/* ============================================================
   FD MONTAGE & HOLZ DESIGN — Stylesheet
   Palette: Warm Cream / Dark Brown / Terracotta Accent
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root,
[data-theme='light'] {
  --color-bg:              #F2EDE4;
  --color-surface:         #F7F3EC;
  --color-surface-2:       #FAFAF7;
  --color-surface-offset:  #EBE4D8;
  --color-border:          #D8CFC2;
  --color-divider:         #E0D8CC;

  --color-text:            #2C1F14;
  --color-text-muted:      #7A6A5A;
  --color-text-faint:      #B5A899;
  --color-text-inverse:    #F7F3EC;

  --color-accent:          #A0521E;
  --color-accent-hover:    #7E3D12;
  --color-accent-light:    #D4835A;
  --color-accent-highlight:#EDD9C8;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Type */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-hero: clamp(2.8rem, 1.5rem + 5.5vw, 6.5rem);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* UI */
  --radius-sm:  0.375rem;
  --radius-md:  0.5rem;
  --radius-lg:  0.75rem;
  --radius-xl:  1rem;
  --radius-full: 9999px;
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm:  0 1px 3px rgb(44 31 20 / 0.08);
  --shadow-md:  0 4px 16px rgb(44 31 20 / 0.10);
  --shadow-lg:  0 12px 40px rgb(44 31 20 / 0.14);

  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;
}



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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  transition: background var(--transition), color var(--transition);
}

img, video { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p, li { text-wrap: pretty; }

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-hover); }
button { cursor: pointer; background: none; border: none; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}

.section { padding-block: clamp(var(--space-16), 10vw, var(--space-24)); }
.section-alt { background: var(--color-surface); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--color-accent-hover); color: #fff; box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.8); }

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}
.btn-outline:hover { background: var(--color-accent); color: #fff; }

.btn-full { width: 100%; justify-content: center; }

/* --- HEADER --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition), background var(--transition);
}
.header--scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}
.logo:hover { color: var(--color-text); }

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}
.logo-sub {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.logo-small .logo-title { font-size: 0.95rem; }

/* Real logo image */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img--footer {
  height: 36px;
  width: auto;
  /* Footer has dark bg — invert the dark logo to show light */
  filter: invert(1) brightness(1.8);
}


.nav ul { display: flex; gap: var(--space-1); list-style: none; }
.nav a {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
  transition: color var(--transition), background var(--transition);
}
.nav a:hover { color: var(--color-text); background: var(--color-surface-offset); }
.nav a.nav-cta {
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
}
.nav a.nav-cta:hover { background: var(--color-accent-hover); color: #fff; }

.header-actions { display: flex; align-items: center; gap: var(--space-2); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  padding: var(--space-2);
}
.burger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-4) 0 var(--space-6);
}
.mobile-nav ul { list-style: none; }
.mobile-nav .mobile-link {
  display: block;
  padding: var(--space-4) clamp(var(--space-5), 5vw, var(--space-16));
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav .mobile-link:hover { background: var(--color-surface-offset); color: var(--color-accent); }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgb(44 31 20 / 0.80) 0%,
    rgb(44 31 20 / 0.55) 50%,
    rgb(44 31 20 / 0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-block: var(--space-24);
}

.hero-eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-5);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}
.hero-heading em {
  font-style: italic;
  color: var(--color-accent-light);
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: var(--space-10);
  max-width: 52ch;
}

.hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollHint 2s ease infinite;
}
@keyframes scrollHint {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* --- INTRO STRIP --- */
.intro-strip {
  background: var(--color-text);
  color: var(--color-text-inverse);
  padding-block: var(--space-6);
}
.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.intro-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(242,237,228,0.85);
}
.intro-item svg { color: var(--color-accent-light); flex-shrink: 0; }
.intro-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* --- SECTION HEADER --- */
.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}
.section-intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 58ch;
}
.section-header { margin-bottom: var(--space-12); }
.section-header .section-heading { margin-bottom: var(--space-4); }

/* --- ÜBER MICH --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  max-width: 55ch;
}
.about-text p strong { color: var(--color-text); }

.about-facts {
  display: flex;
  gap: var(--space-8);
  margin-block: var(--space-8);
  padding-block: var(--space-6);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.fact { display: flex; flex-direction: column; gap: var(--space-1); }
.fact-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-accent);
}
.fact-label { font-size: var(--text-xs); color: var(--color-text-muted); }

.about-images {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  grid-template-rows: auto auto;
  gap: var(--space-4);
}
.about-img-main {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }

.about-img-accent {
  grid-column: 2;
  grid-row: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-10);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }

/* --- LEISTUNGEN --- */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-5);
}

.leistung-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.leistung-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-accent-highlight);
}
.leistung-icon {
  width: 56px; height: 56px;
  background: var(--color-accent-highlight);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-accent);
  transition: background var(--transition);
}
.leistung-card:hover .leistung-icon { background: var(--color-accent); color: #fff; }

.leistung-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.leistung-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.leistung-card--highlight {
  background: var(--color-surface-2);
  border-color: var(--color-border);
  border-width: 1.5px;
}
.leistung-card--highlight .leistung-icon {
  background: var(--color-accent-highlight);
  color: var(--color-accent);
}
.leistung-card--highlight:hover {
  background: var(--color-surface-2);
  border-color: var(--color-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.leistung-card--highlight:hover .leistung-icon { background: var(--color-accent); color: #fff; }
.leistung-card--highlight h3 { color: var(--color-text); }
.leistung-card--highlight p { color: var(--color-text-muted); }

/* --- PORTFOLIO SLIDESHOWS --- */
.slideshow-block {
  margin-bottom: var(--space-14);
}
.slideshow-block:last-child { margin-bottom: 0; }

.slideshow-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

/* Wrapper: clips overflow, holds arrows */
.slideshow-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

/* Track: all slides in a row */
.slideshow-track {
  display: flex;
  gap: var(--space-4);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Each slide = 1/3 width minus gaps */
.slideshow-slide {
  flex: 0 0 calc((100% - 2 * var(--space-4)) / 3);
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-surface);
}
.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms cubic-bezier(0.16,1,0.3,1);
}
.slideshow-slide:hover img { transform: scale(1.04); }

/* Navigation arrows */
.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgb(242 237 228 / 0.92);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), transform var(--transition);
}
.slideshow-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.slideshow-btn:disabled { opacity: 0.3; cursor: default; }
.slideshow-btn--prev { left: var(--space-3); }
.slideshow-btn--next { right: var(--space-3); }

/* Dots */
.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.slideshow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.slideshow-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}
.slideshow-dot:hover { background: var(--color-accent-hover); }

.portfolio-cta {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}
.portfolio-cta p { color: var(--color-text-muted); font-size: var(--text-sm); }

/* --- KONTAKT --- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}

.kontakt-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.kontakt-beruf {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
}

.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.kontakt-item svg { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.kontakt-item div { display: flex; flex-direction: column; gap: 2px; }
.kontakt-label { font-size: var(--text-xs); color: var(--color-text-faint); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.kontakt-item a { font-size: var(--text-base); font-weight: 500; color: var(--color-text); }
.kontakt-item a:hover { color: var(--color-accent); }

.kontakt-instagram {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
  transition: all var(--transition);
}
.kontakt-instagram:hover { color: var(--color-accent); border-color: var(--color-accent); background: var(--color-accent-highlight); }

/* Formular */
.kontakt-form {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  box-shadow: var(--shadow-sm);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }

.form-group { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.form-group:last-of-type { margin-bottom: var(--space-6); }

label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
label span { color: var(--color-accent); }

input, textarea, select {
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-base);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--color-text-faint); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-highlight);
}
textarea { resize: vertical; min-height: 120px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A6A5A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right var(--space-4) center; padding-right: var(--space-10); }

/* Honeypot — absolut unsichtbar, auch für Screen Reader */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}

/* hidden attribute must override display:flex */
[hidden] { display: none !important; }

.form-error {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: #fde8e8;
  color: #9b2c2c;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
}
.form-error svg { color: #9b2c2c; flex-shrink: 0; }
.form-error a { color: #9b2c2c; text-decoration: underline; }




.form-success {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: #d4edda;
  color: #155724;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
}
.form-success svg { color: #155724; flex-shrink: 0; }

/* --- FOOTER --- */
.footer {
  background: var(--color-text);
  color: var(--color-text-inverse);
  padding-top: var(--space-16);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-brand .logo { color: var(--color-text-inverse); }
.footer-brand .logo-title { color: var(--color-text-inverse); font-size: 0.9rem; }
.footer-brand .logo-sub { color: rgba(242,237,228,0.5); }
.footer-brand p { font-size: var(--text-sm); color: rgba(242,237,228,0.6); max-width: 30ch; }

.footer-nav ul { display: flex; flex-direction: column; gap: var(--space-3); list-style: none; }
.footer-nav a { font-size: var(--text-sm); color: rgba(242,237,228,0.65); transition: color var(--transition); }
.footer-nav a:hover { color: var(--color-accent-light); }

.footer-contact { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-contact a { font-size: var(--text-sm); color: rgba(242,237,228,0.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--color-accent-light); }

.footer-bottom {
  padding-block: var(--space-5);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-bottom p, .footer-bottom a {
  font-size: var(--text-xs);
  color: rgba(242,237,228,0.45);
}
.footer-bottom a:hover { color: rgba(242,237,228,0.8); }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { grid-template-columns: 1fr 0.5fr; }
  .about-img-main img { aspect-ratio: 4/3; }

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

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero-content { padding-block: var(--space-16); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .intro-strip-inner { gap: var(--space-5); }
  .intro-divider { display: none; }

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

  .about-images { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }

  .about-facts { gap: var(--space-5); }

  /* slideshow responsive below */

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* Mobile nav show/hide — only open when .open class is present */
.mobile-nav.open { display: block; }

/* --- SLIDESHOW RESPONSIVE --- */
@media (max-width: 768px) {
  /* On mobile: show 1 image at a time */
  .slideshow-slide {
    flex: 0 0 100%;
  }
  .slideshow-track {
    gap: 0;
  }
  .slideshow-btn { display: flex; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet: show 2 images */
  .slideshow-slide {
    flex: 0 0 calc((100% - var(--space-4)) / 2);
  }
}
