/* ============================================
   PETTER CONSULTING — style.css
   Aesthetic: Light editorial, warm ink on cream
   Cormorant Garamond + Archivo
   ============================================ */

/* --- RESET & ROOT --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #F5F1EA;   /* warm parchment */
  --bg-alt:      #EDE9E0;   /* slightly darker cream */
  --bg-dark:     #1C1C1A;   /* near-black ink */
  --text:        #1C1C1A;
  --text-muted:  #7A7670;
  --accent:      #2D5A3D;   /* deep forest green */
  --accent-warm: #8B6914;   /* warm gold/ochre */
  --border:      rgba(28,28,26,0.1);
  --border-dark: rgba(255,255,255,0.08);
  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Archivo', system-ui, sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

/* --- CUSTOM CURSOR --- */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.25s, background 0.25s;
  mix-blend-mode: multiply;
}
.cursor.small {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-color: var(--accent);
}
.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}
@media (hover: none) {
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
}

/* --- INTRO OVERLAY --- */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-fill {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  transform-origin: bottom;
  transition: transform 0.85s var(--ease-out);
}
.intro-overlay.exit .intro-fill { transform: scaleY(0); }
.intro-overlay.gone { display: none; }

.intro-content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.intro-line {
  font-family: var(--ff-body);
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0;
  transform: translateY(16px);
  animation: ifade 0.7s 0.2s var(--ease-out) forwards;
}
.intro-line--serif {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 9vw, 7rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.05em;
  text-transform: none;
  animation-delay: 0.4s;
}
.intro-tagline {
  font-family: var(--ff-body);
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  animation: ifade 0.6s 0.7s var(--ease-out) forwards;
}
@keyframes ifade { to { opacity: 1; transform: none; } }

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 3.5rem;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(245,241,234,0.94);
  backdrop-filter: blur(14px);
  padding: 1.1rem 3.5rem;
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  text-decoration: none;
  margin-right: auto;
  display: flex;
  align-items: baseline;
  gap: 0;
}
.logo-p {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-c {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  align-self: flex-end;
  margin-bottom: 0.18em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.8rem;
}
.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  color: var(--text-muted);
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0.15rem 0.2rem;
  transition: color 0.2s;
}
.lang-btn:hover, .lang-btn.active { color: var(--accent); }
.lang-btn.active { font-weight: 500; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.nav-drawer.open { transform: none; }
.nav-drawer ul { list-style: none; text-align: center; }
.nav-drawer ul li { margin: 1.4rem 0; }
.drawer-link {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-style: italic;
  color: var(--bg);
  text-decoration: none;
  transition: color 0.2s;
}
.drawer-link:hover { color: var(--accent); }
.drawer-lang {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.nav-drawer .lang-btn { color: rgba(245,241,234,0.4); }
.nav-drawer .lang-btn:hover,
.nav-drawer .lang-btn.active { color: var(--accent); }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 50% at 85% 35%, rgba(45,90,61,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 10% 70%, rgba(139,105,20,0.06) 0%, transparent 55%);
  will-change: transform;
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 220px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3.5rem;
  max-width: 1000px;
  padding-top: 7rem;
}
.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 2.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Decorative element */
.hero-deco {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.2;
  pointer-events: none;
}
.deco-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: spinSlow 30s linear infinite;
}
.deco-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.35;
}
.scroll-track {
  width: 1px;
  height: 60px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.scroll-thumb {
  position: absolute;
  top: 0;
  width: 100%;
  height: 30px;
  background: var(--accent);
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(100%); }
  100% { transform: translateY(200%); }
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: var(--text-muted);
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: #234a30; transform: translateY(-2px); }
.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: transparent;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* --- MARQUEE --- */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
  background: var(--bg-dark);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.3);
  padding-right: 2rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- SECTIONS --- */
.section { padding: 9rem 0; }
.section.leistungen { background: var(--bg-dark); }
.section.team { background: var(--bg-alt); }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.section-label {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}
.section.leistungen .section-label { color: rgba(245,90,61,0.0); }
.section.leistungen .section-label { color: #6aaa82; }
.section.leistungen .section-label::before { background: #6aaa82; }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 5rem;
}
.section-title em { font-style: italic; color: var(--accent); }
.phi-title { font-size: clamp(2.2rem, 4.5vw, 4rem); }
.section.leistungen .section-title { color: var(--bg); }
.section.leistungen .section-title em { color: #6aaa82; }

/* --- PHILOSOPHIE --- */
.philosophie { background: var(--bg); }
.phi-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.phi-badge {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3rem;
  padding: 1.2rem 1.8rem;
  border: 1px solid var(--border);
  display: inline-flex;
}
.badge-year {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
}
.phi-lead {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.8rem;
}
.phi-right > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.phi-values { display: flex; flex-direction: column; gap: 0.9rem; }
.value-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}
.value-mark {
  color: var(--accent);
  font-family: var(--ff-display);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --- LEISTUNGEN --- */
.leis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.leis-card {
  padding: 3rem 2.8rem;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
  position: relative;
}
.leis-card:hover { background: #222220; }
.leis-card--featured {
  background: var(--accent);
}
.leis-card--featured:hover { background: #234a30; }
.leis-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.1);
}
.leis-card--featured .leis-number { color: rgba(255,255,255,0.25); }
.leis-card h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(245,241,234,0.9);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.leis-card--featured h3 { color: var(--bg); }
.leis-card p {
  font-size: 0.88rem;
  color: rgba(245,241,234,0.45);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.leis-card--featured p { color: rgba(245,241,234,0.75); }
.leis-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,241,234,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.leis-link:hover { border-color: var(--bg); }

/* --- STATS BAND --- */
.stats-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.s-stat { text-align: center; flex: 1; min-width: 120px; }
.s-num {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.s-num sup { font-size: 0.5em; }
.s-lab {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.s-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* --- TEAM --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.team-card {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: box-shadow 0.3s;
}
.team-card:hover { box-shadow: 0 4px 24px rgba(45,90,61,0.08); }
.team-initials {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.team-name {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.team-bio {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- PULL QUOTE --- */
.pull-quote-section {
  background: var(--bg-dark);
  padding: 7rem 0;
}
.pull-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.pull-quote p {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--bg);
  line-height: 1.45;
  margin-bottom: 1.4rem;
}
.pull-quote cite {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}

/* --- KONTAKT --- */
.kontakt { background: var(--bg); }
.kontakt-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.ko-intro {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2.8rem;
}
.ko-details { display: flex; flex-direction: column; gap: 1.8rem; }
.ko-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.ko-icon {
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.ko-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.ko-val {
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
a.ko-val:hover { color: var(--accent); }

.ko-card {
  background: var(--accent);
  padding: 3rem 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.ko-card-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--bg);
  line-height: 1.2;
}
.ko-card-sub {
  font-size: 0.8rem;
  color: rgba(245,241,234,0.65);
  letter-spacing: 0.06em;
  margin-top: -0.4rem;
}
.ko-card .btn-primary {
  background: var(--bg);
  color: var(--accent);
}
.ko-card .btn-primary:hover { background: var(--bg-alt); }
.ko-card .btn-ghost {
  color: rgba(245,241,234,0.7);
  border-color: rgba(245,241,234,0.25);
}
.ko-card .btn-ghost:hover {
  color: var(--bg);
  border-color: var(--bg);
}

/* --- FOOTER --- */
.footer {
  background: var(--bg-dark);
  padding: 2.4rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-right: auto;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--bg);
  letter-spacing: 0.02em;
}
.footer-sub {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.25);
}
.footer-sister a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(245,241,234,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-sister a:hover { color: var(--accent); }
.footer-copy {
  font-size: 0.68rem;
  color: rgba(245,241,234,0.2);
}

/* --- REVEAL --- */
.reveal { opacity: 0; transform: translateY(36px); }

/* --- SCATTER CHARS --- */
.char { display: inline-block; }

/* --- RESPONSIVE --- */
@media (max-width: 960px) {
  .phi-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .kontakt-layout { grid-template-columns: 1fr; gap: 3rem; }
  .hero-deco { display: none; }
}

@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links, .lang-switcher { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 1.5rem; padding-top: 7rem; }
  .hero-scroll-hint { right: 1.5rem; }
  .hero-actions { flex-direction: column; }

  .container { padding: 0 1.5rem; }
  .section { padding: 5rem 0; }

  .leis-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 2.5rem; }
  .s-divider { display: none; }
  .team-card { flex-direction: column; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-brand { margin-right: 0; }
}

/* --- REFERENZEN --- */
.referenzen { background: var(--bg-alt); }
.ref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.ref-card {
  padding: 2.2rem 2.4rem;
  background: var(--bg);
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ref-card:hover { background: var(--bg-card); }
.ref-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
.ref-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.ref-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.4rem;
  transition: opacity 0.2s;
}
.ref-link:hover { opacity: 0.7; }

/* --- MAP --- */
.kontakt-map {
  margin-top: 1.8rem;
  border: 1px solid var(--border);
  overflow: hidden;
  filter: grayscale(0.6) contrast(1.05);
}

@media (max-width: 768px) {
  .ref-grid { grid-template-columns: 1fr; }
}

