/* ============================================================
   Heading Around Travel – Reisebüro Stefanie Codausi
   Editorial Design · Hochwertig, persönlich, floskelfrei.
   Keine externen Schriften/Bibliotheken – 100% lokal & unabhängig.
   ============================================================ */

:root {
  /* Editorial Farbklima */
  --ink: #18202a;
  --ink-soft: #4a5462;
  --ink-faint: #788392;
  --paper: #fbf8f3;
  --paper-tint: #f3ece1;
  --card: #ffffff;
  --dark-bg: #141b23;
  --dark-surface: #1e2833;
  --dark-text: #f4f6f8;
  --dark-muted: #9aa8b8;

  /* Ruhige Akzentfarben */
  --accent: #1e4d6d;
  --accent-deep: #13364e;
  --accent-soft: #edf5fa;
  --accent-line: #d1e3ee;
  --line: #e6ded1;
  --line-strong: #d2c7b5;

  /* Geometrie & Kanten: Keine runden Spielzeug-Ecken, sondern feiner Schliff */
  --radius-sm: 4px;
  --radius: 6px;
  --radius-md: 10px;

  /* Typografie-Stacks */
  --font-serif: "Playfair Display", "Cormorant Garamond", "Editorial New", Baskerville, "Georgia", "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 2rem);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.62;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

figure {
  margin: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: var(--accent-deep);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: 1.5rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
}

.skip-link:focus {
  top: 0;
}

.container {
  width: min(1240px, 100% - 4rem);
  margin-inline: auto;
}

/* ============================================================
   HEADER & ORIGINAL-LOGO
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 248, 243, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.6rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

/* Original Logo unbeschnitten mit natürlicher Flügel-Breite */
.brand-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}

.brand-sub {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.4rem 0;
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.22s ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent) !important;
  color: #ffffff !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  transition: background-color 0.18s ease, transform 0.18s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-deep) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.nav-toggle:hover {
  background: var(--paper-tint);
  border-color: var(--ink);
}

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  margin: 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO: FULL-BLEED EDITORIAL (IMMERSIVES REISEFOTO)
   ============================================================ */

/* ============================================================
   HERO: EDITORIAL PLATE (IMMERSIVES FINGERTIP REISEFOTO)
   ============================================================ */

.hero-section-wrap {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
}

.hero {
  position: relative;
  max-width: 1240px;
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(20, 28, 36, 0.12);
  min-height: min(82vh, 720px);
  display: flex;
  align-items: flex-end;
  background: var(--dark-bg);
  color: #ffffff;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 36%;
}

/* Subtiler, fotografischer Vignette-Verlauf:
   Himmel und Felsen bleiben licht und strahlend, der Text ist optimal lesbar */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      90deg,
      rgba(15, 21, 29, 0.88) 0%,
      rgba(15, 21, 29, 0.72) 48%,
      rgba(15, 21, 29, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(15, 21, 29, 0.42) 0%,
      rgba(15, 21, 29, 0.22) 40%,
      rgba(14, 19, 26, 0.88) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 5.5rem clamp(2.5rem, 5vw, 5.5rem) 3.5rem;
  width: 100%;
}

.hero-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d2e7f7;
  margin: 0 0 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-kicker::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1.5px;
  background: #d2e7f7;
}

.hero-h1 {
  margin: 0 0 1.4rem;
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
  max-width: 22ch;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #e5edf5;
  margin: 0 0 2.2rem;
  max-width: 58ch;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 2.6rem;
}

.btn,
.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  min-height: 48px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
}

.btn-primary {
  background: #205c83;
  color: #ffffff;
  border-color: #357ca8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  background: #174868;
  border-color: #26658d;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(0, 0, 0, 0.02);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(20, 28, 38, 0.35);
  backdrop-filter: blur(8px);
  color: #ffffff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.2rem;
  padding: 1.1rem 1.8rem;
  background: rgba(18, 25, 34, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  width: max-content;
  max-width: 100%;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}

.hero-meta-val {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.hero-meta-label {
  font-size: 0.78rem;
  color: #b8c8d8;
  margin-top: 0.2rem;
}

.hero-photo-credit {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.78rem;
  color: #9cb0c4;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 1.5rem;
}

.hero-photo-credit span:first-child {
  color: #ffffff;
  font-weight: 500;
}

.hero-caption span:first-child {
  font-weight: 500;
}

/* ============================================================
   SECTIONS: WEISSRAUM & EDITORIAL STRUKTUR
   ============================================================ */

.section {
  padding: clamp(6.5rem, 10vw, 10.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.section-tint {
  background-color: var(--paper-tint);
}

.section-header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  max-width: 68ch;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  margin: 0 0 1.2rem;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-intro {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.75;
}

/* ============================================================
   ÜBER STEFANIE: EDITORIAL ESSAY STATT SAAS-HÄKCHEN
   ============================================================ */

.about-editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}

.editorial-body {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.editorial-lead {
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 2rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
}

.editorial-body p {
  margin: 0 0 1.5rem;
}

.author-sign {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.author-info strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
}

.author-info span {
  font-size: 0.88rem;
  color: var(--ink-faint);
}

/* Rechte Spalte: Die 3 Kernunterschiede */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.pillar-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.pillar-item h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.3;
}

.pillar-item p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.editorial-pullquote {
  margin-top: 2rem;
  padding: 2rem 2.2rem;
  background: var(--dark-bg);
  color: var(--dark-text);
  border-radius: var(--radius);
}

.editorial-pullquote blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.55;
  font-style: italic;
}

.editorial-pullquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-muted);
}

/* ============================================================
   REISEERFAHRUNG: 36 LÄNDER REGISTER & BILDBAND
   ============================================================ */

.experience-intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3.5rem;
}

.regions-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.region-col h3 {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.region-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.region-col li {
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.region-col li::before {
  content: "—";
  color: var(--line-strong);
  font-size: 0.85rem;
}

/* Eleganter Bildband (Strip) */
.photo-strip-container {
  margin-top: 3.5rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  background: #ffffff;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.strip-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: strip-scroll 75s linear infinite;
}

.photo-strip-container:hover .strip-track,
.photo-strip-container:focus-within .strip-track {
  animation-play-state: paused;
}

.strip-figure {
  flex: none;
  width: 280px;
}

.strip-figure img {
  width: 280px;
  height: 185px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}

.strip-figure:hover img {
  transform: scale(1.03);
}

.strip-figure figcaption {
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-top: 0.5rem;
  text-align: left;
}

@keyframes strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   REISEJOURNAL / INSPIRATION (MAGAZIN-SPREADS)
   ============================================================ */

.journal-entry {
  margin-bottom: clamp(6rem, 10vw, 8.5rem);
  padding-bottom: clamp(5rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.journal-entry:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Asymmetrische Magazine Spreads */
.journal-spread {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.journal-spread.flip {
  grid-template-columns: 0.9fr 1.1fr;
}

.journal-spread.flip .journal-text {
  order: 1;
}

.journal-spread.flip .journal-visuals {
  order: 2;
}

.journal-text {
  display: flex;
  flex-direction: column;
}

.journal-tag {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.journal-title {
  margin: 0 0 1.4rem;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.journal-text p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Praxishinweis-Box */
.field-note {
  margin-top: 1.6rem;
  background: var(--card);
  border-left: 3px solid var(--accent);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}

.field-note strong {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.4rem;
}

.field-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink);
}

/* Bildkompositionen im Journal */
.journal-visuals {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.visual-lead {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 6px;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.visual-lead img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.visual-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.visual-item {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 4px;
  border-radius: var(--radius);
}

.visual-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.visual-caption {
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 0.4rem;
  padding: 0 0.2rem;
}

/* ============================================================
   WEITERE REISEZIELE: REDAKTIONELLES ARCHIV
   ============================================================ */

.archive-header {
  margin-top: 4rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.archive-header h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.archive-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.archive-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.archive-card figure {
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.archive-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.archive-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.archive-card-body h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--ink);
}

.archive-card-body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================================
   LEISTUNGEN: EDITORIAL TABLEAU STATT SAAS-ICON-KACHELN
   ============================================================ */

.services-tableau {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-column {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.service-index {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.6rem;
}

.service-column h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.3;
}

.service-column p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.68;
  color: var(--ink-soft);
}

.service-promise {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.service-promise p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 68ch;
  line-height: 1.65;
}

/* ============================================================
   CTA / GESPRÄCHSANGEBOT
   ============================================================ */

.cta-editorial {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.cta-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  line-height: 1.18;
  margin: 0 0 1.2rem;
  color: #ffffff;
}

.cta-box p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--dark-muted);
}

.cta-box-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-box-actions .btn {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  text-align: center;
}

.cta-box-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.cta-box-actions .btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   KONTAKT: PERSÖNLICH & GEERDET IN ZETEL
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}

.contact-copy {
  display: flex;
  flex-direction: column;
}

.contact-lead {
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.8rem;
}

.contact-steps {
  margin-top: 1rem;
  padding: 1.8rem 2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-steps h3 {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-steps p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--ink-soft);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-ed {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.contact-card-ed .cc-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 0.6rem;
}

.contact-card-ed .cc-value {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.contact-card-ed .cc-value a {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.contact-card-ed .cc-value a:hover {
  color: var(--accent);
}

.contact-card-ed .cc-sub {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.contact-card-ed address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

.photo-disclaimer {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-faint);
}

/* ============================================================
   FOOTER: EDEL & ZURÜCKHALTEND
   ============================================================ */

.site-footer {
  background: var(--dark-bg);
  color: var(--dark-muted);
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  text-decoration: none;
}

.footer-brand .brand-logo-frame {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-brand .brand-name {
  color: #ffffff;
}

.footer-brand .brand-sub {
  color: var(--dark-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  font-size: 0.92rem;
}

.footer-nav a {
  color: var(--dark-muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.25rem 0.2rem;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--dark-muted);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.25rem 0.2rem;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* ============================================================
   REVEAL-ANIMATION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE DESIGN (DESKTOP, TABLET, SMARTPHONE)
   ============================================================ */

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .cta-box {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-editorial-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .experience-intro-row {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .journal-spread,
  .journal-spread.flip {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .journal-spread.flip .journal-text {
    order: 0;
  }

  .journal-spread.flip .journal-visuals {
    order: 1;
  }

  .regions-table {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 68px;
  }

  .header-inner {
    min-height: var(--header-h);
    padding: 0.4rem 0;
    gap: 0.75rem;
  }

  .brand {
    gap: 0.75rem;
    min-width: 0;
    flex: 1;
  }

  .brand-logo-frame {
    padding: 2px;
    border-radius: var(--radius-sm);
    flex: none;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    min-width: 0;
    overflow: hidden;
  }

  .brand-name {
    font-size: 1.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
  }

  .brand-sub {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 0.15rem;
  }

  .nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    flex: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(251, 248, 243, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1.4rem 1.4rem;
    box-shadow: 0 16px 36px rgba(20, 28, 36, 0.12);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    color: var(--ink);
    font-weight: 500;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:last-of-type {
    border-bottom: none;
  }

  .nav-cta {
    margin-top: 1rem;
    min-height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: var(--radius) !important;
  }

  .hero-section-wrap {
    padding: 1.2rem 0;
  }

  .hero {
    min-height: auto;
    display: block;
    margin-inline: 1rem;
    border-radius: 14px;
  }

  .hero-media::after {
    background: linear-gradient(
      180deg,
      rgba(15, 21, 29, 0.76) 0%,
      rgba(15, 21, 29, 0.72) 45%,
      rgba(12, 17, 24, 0.94) 100%
    );
  }

  .hero-content {
    padding: 2.5rem 1.5rem 2rem;
  }

  .hero-meta-bar {
    width: 100%;
    gap: 1.2rem;
    padding: 1rem 1.2rem;
  }

  .hero-photo-credit {
    margin-left: 0;
    align-items: flex-start;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-left: 0;
    padding-top: 0.8rem;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 2rem, 1240px);
  }

  .hero-h1 {
    font-size: 2rem;
    line-height: 1.18;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .services-tableau {
    grid-template-columns: 1fr;
  }

  .visual-gallery {
    grid-template-columns: 1fr;
  }

  .strip-figure {
    width: 210px;
  }

  .strip-figure img {
    width: 210px;
    height: 140px;
  }

  .section {
    padding: 4.5rem 0;
  }
}

@media (max-width: 420px) {
  :root {
    --header-h: 62px;
  }

  .container {
    width: min(100% - 1.6rem, 1240px);
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }

  .nav-toggle .bar {
    width: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .strip-track {
    animation: none;
  }

  .btn,
  .archive-card,
  .strip-figure img {
    transition: none;
  }
}
