/* ============================================================
   style.css · alexanderkrunic.com · Gemeinsames CSS
   Stand: 2026-05-05
   ============================================================ */

/* ── GOOGLE FONTS ── */
/* Einbindung im <head> via <link> – hier nur als Referenz:
   Outfit 300,400,500,600 · Cormorant Garamond 300,400,400i,600,600i */

/* ── CUSTOM PROPERTIES ── */
:root {
  --white: #ffffff;
  --off: #f8f7f5;
  --ink: #181614;
  --mid: #6a6560;
  --faint: #e6e2dc;
  --purple: #3b2c6e;
  --gold: #9a7320;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center;
  padding: 0 3.5rem; height: 62px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--faint);
}
.nav-monogram {
  display: flex; align-items: center;
  text-decoration: none; transition: opacity 0.2s; flex-shrink: 0;
}
.nav-monogram:hover { opacity: 0.65; }
.nav-monogram svg circle { transition: stroke 0.2s; }
.nav-monogram:hover svg circle { stroke: var(--gold); }
.nav-monogram svg text { transition: fill 0.2s; }
.nav-monogram:hover svg text { fill: var(--gold); }
.nav-name-text {
  font-family: var(--serif);
  font-size: 1rem; font-weight: 600;
  color: var(--ink); letter-spacing: 0.01em;
  margin-left: 0.5rem;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.06em; color: var(--mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 500; }
.nav-right { display: flex; align-items: center; gap: 1rem; margin-left: auto; }

/* Hamburger rechtsbündig auf Unterseiten (ohne nav-right) */
nav:not(:has(.nav-right)) .nav-hamburger {
  margin-left: auto;
}

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none; z-index: 200;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); transition: all 0.25s ease; transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile-menu {
  display: none; position: fixed;
  top: 62px; left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--faint);
  padding: 1.5rem 1.5rem 2rem;
  z-index: 99; flex-direction: column; gap: 0;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 1rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--ink); text-decoration: none;
  padding: 0.9rem 0; border-bottom: 1px solid var(--faint); transition: color 0.2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--purple); }

/* Nav Responsive */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .nav-name-text { display: none; }
}

/* ── FOOTER ── */
.footer-big { background: var(--ink); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 3.5rem 3rem;
  display: grid; grid-template-columns: 2fr 1fr; gap: 4rem;
}
.footer-col-title {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #d4a84b; margin-bottom: 1.2rem;
}
.footer-platform-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-platform {
  font-family: var(--serif); font-size: 1rem;
  font-weight: 400; color: rgba(255,255,255,0.82);
  text-decoration: none; transition: color 0.2s;
}
.footer-platform sup { font-size: 0.5em; vertical-align: super; }
.footer-platform:hover { color: rgba(255,255,255,1); }
.footer-address {
  font-style: normal; font-size: 0.82rem;
  color: rgba(255,255,255,0.72); line-height: 1.9; margin-bottom: 0.8rem;
}
.footer-contact-links { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.footer-contact-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.72);
  text-decoration: none; transition: color 0.2s;
}
.footer-contact-links a:hover { color: white; }
.footer-impressum { display: flex; flex-direction: column; gap: 0.3rem; padding-top: 0.8rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-impressum p {
  font-size: 0.74rem; color: rgba(255,255,255,0.55);
  line-height: 1.6;
  -webkit-user-select: text; user-select: text;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 1.4rem 3.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.footer-legal-links { display: flex; gap: 2rem; }
.footer-legal-links a {
  font-size: 0.72rem; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.9); }

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2rem;
    gap: 2rem; text-align: center;
  }
  .footer-platform-links { align-items: center; }
  .footer-contact-links { align-items: center; }
  .footer-impressum { align-items: center; }
  .footer-bottom-inner {
    flex-direction: column; gap: 1rem;
    padding: 1.2rem 1.5rem; text-align: center;
  }
  .footer-legal-links { gap: 1.5rem; }
}

/* ── BLOG POST GEMEINSAM (Unterseiten) ── */
/* post-header, post-body, post-nav – auf fast allen Unterseiten identisch */
.post-header {
  padding: 9rem 3.5rem 4rem;
  max-width: 780px; margin: 0 auto;
  border-bottom: 1px solid var(--faint);
}
.post-meta {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.post-date {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mid);
}
.post-category {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: #d4a84b;
  border: 1px solid rgba(154,115,32,0.3); padding: 2px 8px;
}
.post-header h1 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.12; color: var(--ink);
}
.post-header h1 em { font-style: italic; font-weight: 300; }

.post-body {
  max-width: 780px; margin: 0 auto;
  padding: 4rem 3.5rem 6rem;
}
.post-body p {
  font-size: 1rem; font-weight: 400; color: var(--mid);
  line-height: 1.9; margin-bottom: 1.4rem;
}
.post-body p:last-child { margin-bottom: 0; }
.post-body h2 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
  color: var(--ink); margin: 2.5rem 0 1rem; line-height: 1.2;
}
.post-body h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: var(--ink); margin: 2rem 0 0.75rem;
}
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body a { color: var(--purple); text-decoration: underline; text-underline-offset: 2px; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.post-body li { font-size: 1rem; color: var(--mid); line-height: 1.9; margin-bottom: 0.25rem; }
.post-body blockquote {
  border-left: 2px solid var(--gold); padding: 0.5rem 1.5rem;
  margin: 2rem 0; background: var(--off);
}
.post-body blockquote p { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--ink); }

.post-figure { margin: 2rem 0 2.5rem; }
.post-figure figcaption {
  font-size: 0.75rem; font-weight: 400; color: var(--mid);
  letter-spacing: 0.04em; margin-top: 0.6rem; font-style: italic;
}

.media-placeholder {
  background: var(--off); border: 1px dashed var(--faint);
  padding: 2.5rem; margin: 2rem 0; text-align: center;
  font-size: 0.82rem; color: var(--mid); font-style: italic;
}

.post-update {
  background: var(--off); border-left: 2px solid var(--gold);
  padding: 1.2rem 1.5rem; margin: 2rem 0;
}
.post-update-label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: #d4a84b; margin-bottom: 0.4rem;
}
.post-update p { font-size: 0.9rem; color: var(--mid); margin: 0; }

.post-nav {
  max-width: 780px; margin: 0 auto;
  padding: 2.5rem 3.5rem;
  border-top: 1px solid var(--faint);
  display: flex; justify-content: space-between; align-items: center;
}
.post-nav a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--purple); text-decoration: none;
  transition: opacity 0.2s;
}
.post-nav a:hover { opacity: 0.65; }

/* Post Responsive */
@media (max-width: 768px) {
  .post-header { padding: 8rem 1.5rem 3rem; }
  .post-body { padding: 3rem 1.5rem 4rem; }
  .post-nav { padding: 2rem 1.5rem; flex-direction: column; gap: 1rem; }
}

/* ============================================================
   HOMEPAGE · alexanderkrunic.com · index.html
   ============================================================ */

/* ── HERO ── */
.hero {
  padding-top: 62px;
  position: relative;
  width: 100%;
  height: calc(100vh - 62px);
  max-height: 650px;
  min-height: 520px;
  overflow: hidden;
  background: #3d2e1a;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 82% center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(15,10,5,0.88) 0%,
    rgba(15,10,5,0.68) 32%,
    rgba(15,10,5,0.12) 58%,
    transparent 72%
  );
}
.hero-content {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  padding: 0 0 0 4%;
  width: 48%;
  max-width: 560px;
}
.hero-kicker {
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #d4a84b; margin-bottom: 1.6rem;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(212,168,75,0.7), 0 0 28px rgba(212,168,75,0.4), 0 0 55px rgba(212,168,75,0.15);
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6vw, 6.5rem);
  font-weight: 300; line-height: 1.0;
  color: #f5f0e8; margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.hero-h1 em { font-style: italic; font-weight: 600; color: #f5f0e8; }
.hero-rule {
  display: none;
}
.hero-sub {
  font-size: 1.05rem; font-weight: 400;
  color: rgba(245,240,232,0.82);
  line-height: 1.7; margin-bottom: 2rem;
  white-space: nowrap;
}
.hero-testimonial-text {
  font-family: var(--serif); font-size: 1rem;
  font-style: italic; color: rgba(245,240,232,0.78);
  display: block;
}
.hero-testimonial-cite {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  display: block; margin-top: 0.3rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-kicker  { animation: fadeUp 0.5s ease both 0s; }
.hero-h1      { animation: fadeUp 0.5s ease both 0.1s; }
.hero-rule    { animation: fadeUp 0.5s ease both 0.24s; }
.hero-testimonial { animation: fadeUp 0.5s ease both 0.3s; }

/* ── OPT-IN STRIP ── */
.optin-strip { background: var(--off); padding: 4rem 0; border-bottom: 1px solid var(--faint); }
.optin-strip-inner { max-width: 780px; margin: 0 auto; padding: 0 3.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.optin-kicker { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0; }
.optin-h { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 400; line-height: 1.25; color: var(--ink); margin: 0; }
.optin-memo-btn { display: inline-block; padding: 0.9rem 2rem; background: #d4a84b; color: #181614; font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; }
.optin-memo-btn:hover { opacity: 0.82; }

/* ── ÜBER MICH ── */
.about { background: var(--white); padding: 6rem 0; }
.about-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 3.5rem;
  display: grid; grid-template-columns: 380px 1fr; gap: 0; align-items: stretch;
}
.about-photo-side { position: relative; overflow: hidden; min-height: 520px; }
.about-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.about-photo-caption {
  position: absolute; bottom: 1rem; left: 1.2rem; right: 1.2rem;
  font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.38); padding: 0.35rem 0.7rem;
  backdrop-filter: blur(4px); line-height: 1.5;
}
.about-photo-caption strong { color: rgba(255,255,255,0.92); font-weight: 600; font-size: 0.75rem; }
.about-photo-caption em { font-style: italic; color: rgba(255,255,255,0.55); }
.about-text-side {
  background: var(--ink); padding: 4rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text p { font-size: 0.97rem; font-weight: 400; color: rgba(245,240,232,0.72); line-height: 1.88; margin-bottom: 1.3rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-text p strong { color: rgba(245,240,232,0.95); font-weight: 600; }
.about-inline-link { color: #d4a84b; opacity: 0.85; text-decoration: underline; text-underline-offset: 2px; }
.about-inline-link:hover { opacity: 1; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(245,240,232,0.1);
}
.about-stat { padding-right: 1rem; }
.about-stat:not(:last-child) { border-right: 1px solid rgba(245,240,232,0.1); margin-right: 1rem; }
.about-stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: #d4a84b; line-height: 1; margin-bottom: 0.3rem; }
.about-stat-label { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.06em; color: rgba(245,240,232,0.72); line-height: 1.4; }

/* ── SECTION SHARED ── */
.section-kicker { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: #d4a84b; margin-bottom: 1.2rem; }
.section-h { font-family: var(--serif); font-size: 2.4rem; font-weight: 400; line-height: 1.15; color: var(--ink); margin-bottom: 3.5rem; }
.section-h em { font-style: italic; font-weight: 300; }

/* ── TIMELINE ── */
.tl-section { padding: 7rem 0 0; overflow: visible; background: var(--white); }
.tl-section-header { max-width: 1200px; margin: 0 auto; padding: 0 3.5rem; margin-bottom: 3rem; }
.tl-scroll-outer { overflow-x: auto; overflow-y: visible; cursor: grab; padding: 1rem 3.5rem 0; -webkit-overflow-scrolling: touch; }
.tl-scroll-outer:active { cursor: grabbing; }
.tl-scroll-outer::-webkit-scrollbar { height: 3px; }
.tl-scroll-outer::-webkit-scrollbar-track { background: var(--faint); }
.tl-scroll-outer::-webkit-scrollbar-thumb { background: var(--faint); border-radius: 2px; }
.tl-track { display: flex; align-items: flex-start; min-width: max-content; position: relative; gap: 0; }
.tl-track::before { content: ""; position: absolute; left: 0; right: 0; top: 38px; height: 1px; background: var(--faint); }
.tl-item { display: flex; flex-direction: column; align-items: center; width: 152px; flex-shrink: 0; position: relative; cursor: pointer; }
.tl-dot-row { display: flex; align-items: center; justify-content: center; width: 152px; height: 38px; position: relative; z-index: 2; }
.tl-diamond { width: 13px; height: 13px; background: var(--white); transform: rotate(45deg); border: 1.5px solid rgba(154,115,32,0.35); transition: background .2s, border-color .2s, transform .2s; flex-shrink: 0; }
.tl-item:hover .tl-diamond, .tl-item.active .tl-diamond { background: var(--gold); border-color: #d4a84b; transform: rotate(45deg) scale(1.3); }
.tl-year { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; color: #d4a84b; margin-top: 0.6rem; text-align: center; }
.tl-title { font-size: 0.75rem; font-weight: 400; color: var(--ink); text-align: center; margin-top: 0.3rem; line-height: 1.35; padding: 0 6px 1rem; }
.tl-expand { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.4s ease; background: var(--off); }
.tl-expand.open { max-height: 220px; padding: 2.5rem 0; }
.tl-expand-inner { max-width: 1200px; margin: 0 auto; padding: 0 3.5rem; display: grid; grid-template-columns: 120px 1fr auto; gap: 0 2.5rem; align-items: start; }
.tl-expand-year { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: rgba(0,0,0,0.07); line-height: 1; padding-top: 0.2rem; }
.tl-expand-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; line-height: 1.25; }
.tl-expand-text { font-size: 0.88rem; font-weight: 400; color: var(--mid); line-height: 1.7; margin-bottom: 0.8rem; }
.tl-expand-link { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); text-decoration: none; border-bottom: 1px solid var(--purple); padding-bottom: 1px; display: inline-block; transition: opacity 0.2s; }
.tl-expand-link:hover { opacity: 0.6; }
.tl-expand-close { background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--mid); padding: 0.2rem 0 0; line-height: 1; transition: color 0.2s; }
.tl-expand-close:hover { color: var(--ink); }
.tl-hint { max-width: 1200px; margin: 1rem auto 0; padding: 0 3.5rem 4rem; font-size: 0.72rem; font-weight: 400; color: var(--mid); display: flex; align-items: center; gap: 0.4rem; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--off); padding: 5rem 0; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; padding: 0 3.5rem; }
.testimonials-h { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--ink); margin-bottom: 2.5rem; line-height: 1.2; }
.testimonials-h em { font-style: italic; font-weight: 300; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--white); padding: 1.6rem 1.8rem; display: flex; flex-direction: column; border-top: 1.5px solid rgba(154,115,32,0.22); }
.testimonial-opening { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: #d4a84b; opacity: 0.3; line-height: 0.8; margin-bottom: 0.6rem; display: block; }
.testimonial-quote { font-family: var(--serif); font-size: 1rem; font-weight: 400; font-style: italic; color: var(--ink); line-height: 1.6; flex: 1; margin-bottom: 1.4rem; }
.testimonial-person { display: flex; align-items: center; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--faint); margin-top: auto; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--faint); display: flex; align-items: center; justify-content: center; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 0.85rem; font-weight: 500; color: var(--ink); line-height: 1.3; }
.testimonial-role { font-size: 0.72rem; font-weight: 400; color: var(--mid); margin-top: 0.15rem; }
.testimonials-nav { display: flex; justify-content: center; gap: 0.6rem; margin-top: 3rem; }
.testimonials-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--faint); cursor: pointer; transition: background 0.2s; }
.testimonials-dot.active { background: var(--gold); }

/* ── BLOG ── */
.blog-strip { max-width: 1200px; margin: 0 auto; padding: 8rem 3.5rem; }
.blog-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 3rem; }
.blog-all { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); text-decoration: none; transition: color 0.2s; }
.blog-all:hover { color: var(--ink); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.blog-item { border-top: 1px solid var(--faint); padding-top: 1.5rem; text-decoration: none; color: inherit; display: block; }
.blog-date { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.6rem; }
.blog-item h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; line-height: 1.3; color: var(--ink); margin-bottom: 0.6rem; transition: color 0.2s; }
.blog-item:hover h3 { color: var(--purple); }
.blog-item p { font-size: 0.85rem; font-weight: 400; color: var(--mid); line-height: 1.65; }

/* ── KONTAKT ── */
.kontakt { background: var(--off); padding: 7rem 0; }
.kontakt-inner { max-width: 1200px; margin: 0 auto; padding: 0 3.5rem; }
.kontakt-kicker { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: #d4a84b; margin-bottom: 1.2rem; }
.kontakt-h { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; color: var(--ink); margin-bottom: 3.5rem; line-height: 1.2; }
.kontakt-h em { font-style: italic; font-weight: 300; }
.kontakt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--faint); }
.kontakt-card { background: var(--white); padding: 2.8rem 2.2rem; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: background 0.2s; border-top: 2px solid transparent; }
.kontakt-card:hover { background: #fdfcfa; }
.kontakt-card.k1 { border-top-color: var(--purple); }
.kontakt-card.k2 { border-top-color: #0d5540; }
.kontakt-card.k3 { border-top-color: #d4a84b; }
.kontakt-card-q { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 1rem; }
.kontakt-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: 0.8rem; line-height: 1.25; }
.kontakt-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.8rem; flex: 1; }
.kontakt-arrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; margin-top: auto; }
.kontakt-card:hover .kontakt-arrow { gap: 0.8rem; }
.kontakt-arrow::after { content: "→"; }

/* ── MISC ── */
.br-mobile { display: none; }
@media (min-width: 769px) { .hero-h1-space { display: none; } }

/* ── RESPONSIVE HOMEPAGE ── */
@media (min-width: 1600px) {
  .hero-content { padding-left: calc((100vw - 1400px) / 2); width: 44%; }
}
@media (max-width: 1024px) {
  .hero-content { width: 55%; padding-left: 3rem; }
  .hero-h1 { font-size: clamp(2.8rem, 5vw, 4rem); }
  .tl-section-header { padding: 0 2rem; }
  .tl-scroll-outer { padding: 1rem 2rem 3rem; }
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-side { min-height: 360px; }
  .about-text-side { padding: 3rem 2rem; }
  .about { padding: 4rem 0; }
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: unset;
    display: flex;
    flex-direction: column;
    padding-top: 62px;
  }
  .hero-bg {
    position: relative;
    width: 100%;
    height: 55vw;
    min-height: 280px;
    max-height: 420px;
    object-fit: cover;
    object-position: right top;
    opacity: 1;
  }
  .hero-overlay { display: none; }
  .hero-content {
    position: relative;
    top: unset; left: unset;
    transform: none;
    width: 100%;
    max-width: 100%;
    background: var(--ink);
    padding: 2.5rem 1.5rem;
  }
  .hero-kicker { font-size: 0.58rem; letter-spacing: 0.1em; margin-bottom: 0.8rem; color: #d4a84b; }
  .hero-h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); color: #f5f0e8; white-space: nowrap; letter-spacing: -0.02em; line-height: 1.0; margin-bottom: 0.8rem; }
  .hero-h1 br { display: none; }
  .hero-sub { white-space: normal; font-size: 0.82rem; margin-bottom: 1.2rem; color: rgba(245,240,232,0.75); }
  .hero-rule { display: none; }
  .optin-strip { padding: 3rem 0; }
  .optin-strip-inner { padding: 0 1.5rem; }
  .about-inner { grid-template-columns: 1fr !important; padding: 0 !important; }
  .about-photo-side { min-height: 320px !important; }
  .about-text-side { padding: 2.5rem 1.5rem !important; }
  .about-stat-num { font-size: 1.5rem !important; }
  .about-stat-label { font-size: 0.62rem !important; letter-spacing: 0.03em !important; }
  .about-stat:not(:last-child) { margin-right: 0.5rem !important; }
  .about { padding: 0 !important; }
  .tl-section-header { padding: 0 1.5rem !important; }
  .tl-scroll-outer { padding: 1rem 1.5rem 0 !important; }
  .tl-hint { padding: 0 1.5rem 3rem !important; }
  .tl-expand.open { max-height: 350px !important; }
  .tl-expand-inner { padding: 0 1.5rem !important; grid-template-columns: 1fr auto !important; }
  .tl-expand-year { display: none !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .testimonials-inner { padding: 0 1.5rem !important; }
  .testimonials { padding: 4rem 0 !important; }
  .blog-strip { padding: 4rem 1.5rem !important; }
  .blog-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .blog-header { flex-direction: column !important; gap: 1rem !important; }
  .kontakt-grid { grid-template-columns: 1fr !important; }
  .kontakt-inner { padding: 0 1.5rem !important; }
  .kontakt { padding: 4rem 0 !important; }
  .br-mobile { display: block; }
  .nav-right { display: none; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(2.8rem, 11vw, 3.5rem) !important; }
  .about-text-side { padding: 2.5rem 1.5rem; }
  .about-stat-num { font-size: 1.6rem; }
}
