/*
Theme Name: Miko Beton Zaun
Theme URI: https://miko-beton-zaun.de
Author: Miko Beton Zaun
Author URI: https://miko-beton-zaun.de
Description: Premium WordPress-Motiv für Miko Beton Zaun — Betonzäune mit Montage in Norddeutschland
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: miko-beton-zaun
Tags: custom-menu, featured-images, post-thumbnails
*/

/* ===========================
   SELF-HOSTED FONTS (DSGVO-konform)
   Keine Verbindung zu Google-Servern
   =========================== */

/* Playfair Display - 400 */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/wp-content/themes/miko-beton-zaun-v11/fonts/playfair-display-v37-latin-regular.woff2') format('woff2');
}

/* Playfair Display - 700 */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/wp-content/themes/miko-beton-zaun-v11/fonts/playfair-display-v37-latin-700.woff2') format('woff2');
}

/* DM Sans - 400 */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/wp-content/themes/miko-beton-zaun-v11/fonts/dm-sans-v15-latin-regular.woff2') format('woff2');
}

/* DM Sans - 500 */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/wp-content/themes/miko-beton-zaun-v11/fonts/dm-sans-v15-latin-500.woff2') format('woff2');
}

/* Cinzel - 600 */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/wp-content/themes/miko-beton-zaun-v11/fonts/cinzel-v23-latin-600.woff2') format('woff2');
}


/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
  --color-white:   #FFFFFF;
  --color-cream:   #F7F5F1;
  --color-dark:    #1A1916;
  --color-gold:    #B8935A;
  --color-gold-light: #C9A870;
  --color-text:    #1A1916;
  --color-text-muted: #6B6760;
  --color-border:  #E3E0D9;
  --color-whatsapp: #25D366;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --max-width: 1280px;
  --section-pad: 96px 24px;
  --section-pad-sm: 64px 24px;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }
body { overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-header h2 { margin-bottom: 16px; }

.section-header p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.section-header .eyebrow { margin-bottom: 12px; }

/* ===========================
   LAYOUT UTILITIES
   =========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-pad); }

.section-light { background: var(--color-white); }
.section-cream { background: var(--color-cream); }
.section-dark  {
  background: var(--color-dark);
  color: var(--color-white);
}
.section-dark .section-header p { color: rgba(255,255,255,0.6); }
.section-dark h2, .section-dark h3 { color: var(--color-white); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}
.btn-gold:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,147,90,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.btn-outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

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

/* ===========================
   NAVIGATION
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(26, 25, 22, 0.97);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── LOGO ────────────────────────────────────────────── */
.site-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.site-logo-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.site-logo-name {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.16em;
  line-height: 1;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--color-gold);
  display: block;
  width: 100%;
}

.site-logo-sub {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 8.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3em;
  margin-top: 5px;
  display: block;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.primary-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.primary-nav a:hover { color: var(--color-gold); }

.nav-cta {
  padding: 10px 22px !important;
  background: var(--color-gold) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius) !important;
  letter-spacing: 0.04em !important;
}
.nav-cta:hover {
  background: var(--color-gold-light) !important;
  color: var(--color-white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--color-white);
  transition: all 0.3s;
}

.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .primary-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--color-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 999;
  }
  .primary-nav a {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
  }
  .nav-open .primary-nav {
    display: flex !important;
    background: #1A1916 !important;
  }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #2a2a25;
  background-size: cover;
  background-position: center;
  transform: none;
  transition: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-inner {
  max-width: 680px;
}

.hero .eyebrow {
  margin-bottom: 16px;
  display: block;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-checklist li svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================
   USP BAR
   =========================== */
.usp-bar {
  background: var(--color-dark);
  padding: 0;
}

.usp-bar .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.usp-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.usp-item:last-child { border-right: none; }
.usp-item svg { color: var(--color-gold); flex-shrink: 0; }

@media (max-width: 860px) {
  .usp-bar .container { grid-template-columns: repeat(2, 1fr); }
  .usp-item { border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 540px) {
  .usp-bar .container { grid-template-columns: 1fr; }
  .usp-item { justify-content: flex-start; border-right: none; }
}

/* ===========================
   KOSTENLOS CARDS
   =========================== */
.kostenlos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.kostenlos-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.kostenlos-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 12px 40px rgba(184,147,90,0.12);
  transform: translateY(-4px);
}

.kostenlos-icon {
  width: 52px; height: 52px;
  background: var(--color-cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.kostenlos-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.kostenlos-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 860px) { .kostenlos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .kostenlos-grid { grid-template-columns: 1fr; } }

/* ===========================
   LEISTUNGEN
   =========================== */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.leistung-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: all var(--transition);
  position: relative;
}
.leistung-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.leistung-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--color-cream);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leistung-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.5s ease;
}
.leistung-card:hover .leistung-card-img img { transform: scale(1.04); }

.leistung-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  z-index: 2;
}

.leistung-num {
  position: absolute;
  bottom: 12px; left: 16px;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  z-index: 2;
}

.leistung-card-body { padding: 28px; }
.leistung-card-body h3 { margin-bottom: 12px; }
.leistung-card-body p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.leistung-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.leistung-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
}
.leistung-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 860px) { .leistungen-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ===========================
   MODELLE TABS
   =========================== */
.modelle-tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.modelle-tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition);
}
.tab-btn:hover { color: var(--color-text); }
.tab-btn.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start; }

.tab-panel-left h3 { margin-bottom: 16px; }
.tab-panel-left p {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.tab-panel-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.model-figure {
  border-radius: var(--radius);
  overflow: hidden;
}
.model-figure img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.model-figure:hover img { transform: scale(1.05); }
.model-figure figcaption {
  padding: 10px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
  background: var(--color-cream);
  text-align: center;
}

.modelle-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  margin-bottom: 40px;
}

@media (max-width: 860px) {
  .tab-panel.active { grid-template-columns: 1fr; gap: 32px; }
  .tab-panel-right { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .tab-panel-right { grid-template-columns: 1fr; }
  .tab-btn { padding: 12px 18px; }
}

/* ===========================
   PREISABSCHÄTZUNG
   =========================== */
.preis-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row.single { grid-template-columns: 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  text-align: center;
}

.form-radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 12px 0;
}
.form-radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  color: var(--color-text);
}
.form-radio-group input[type="radio"] {
  width: 18px; height: 18px;
  accent-color: var(--color-gold);
  flex-shrink: 0;
}

@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* ===========================
   LIEFERUNG & MONTAGE
   =========================== */
.lieferung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.lieferung-col h3 {
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.lieferung-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lieferung-item {
  display: flex;
  gap: 16px;
}

.lieferung-item-icon {
  width: 44px; height: 44px;
  background: rgba(184,147,90,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.lieferung-item-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-white);
}
.lieferung-item-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

@media (max-width: 860px) { .lieferung-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ===========================
   PROJEKTE GALLERY
   =========================== */
.projekte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.projekt-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-cream);
}
.projekt-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.projekt-card:hover img { transform: scale(1.06); }
.projekt-card figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.projekte-placeholder {
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.projekte-placeholder-inner {
  text-align: center;
  color: var(--color-text-muted);
}
.projekte-placeholder-inner svg { margin: 0 auto 8px; opacity: 0.3; }
.projekte-placeholder-inner span { font-size: 0.75rem; opacity: 0.5; }

.projekte-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
}

@media (max-width: 860px) { .projekte-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .projekte-grid { grid-template-columns: 1fr; } }

/* ===========================
   EINSATZGEBIET
   =========================== */
.einsatz-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.einsatz-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
}
.einsatz-item svg { color: var(--color-gold); flex-shrink: 0; }

.einsatz-note {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 860px) { .einsatz-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .einsatz-list { grid-template-columns: 1fr; } }

/* ===========================
   VORTEILE + STATS
   =========================== */
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}

.vorteil-card {
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.vorteil-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 32px rgba(184,147,90,0.1);
}

.vorteil-icon {
  width: 48px; height: 48px;
  background: rgba(184,147,90,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 20px;
}
.vorteil-card h3 { font-size: 1rem; margin-bottom: 10px; }
.vorteil-card p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.65; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--color-white);
  padding: 36px 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (max-width: 860px) {
  .vorteile-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .vorteile-grid { grid-template-columns: 1fr; }
}

/* ===========================
   FAQ ACCORDION
   =========================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-gold); }
.faq-question[aria-expanded="true"] { color: var(--color-gold); }

.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ===========================
   BLOG PREVIEW
   =========================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: all var(--transition);
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--color-cream);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 16px; line-height: 1.6; }
.blog-readmore {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.03em;
}
.blog-readmore:hover { text-decoration: underline; }

@media (max-width: 860px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===========================
   KONTAKT SECTION
   =========================== */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.kontakt-info h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 28px;
}

.kontakt-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.kontakt-item-icon {
  width: 44px; height: 44px;
  background: var(--color-cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}
.kontakt-item-text strong { display: block; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin-bottom: 4px; }
.kontakt-item-text a { font-size: 1rem; font-weight: 600; }
.kontakt-item-text a:hover { color: var(--color-gold); }

.kontakt-whatsapp {
  margin-top: 32px;
}

@media (max-width: 860px) { .kontakt-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .site-logo {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--color-gold); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ===========================
   PAGE & SINGLE POST
   =========================== */
.page-hero {
  background: var(--color-dark);
  padding: 160px 24px 80px;
  text-align: center;
}
.page-hero h1 { color: var(--color-white); }
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 16px; }

.entry-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px;
  font-size: 1.05rem;
  line-height: 1.85;
}
.entry-content h2 { margin: 48px 0 16px; }
.entry-content h3 { margin: 36px 0 12px; }
.entry-content p { margin-bottom: 20px; }
.entry-content ul, .entry-content ol { margin: 16px 0 24px 24px; }
.entry-content li { margin-bottom: 8px; }
.entry-content img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 32px 0;
}
.entry-content a { color: var(--color-gold); text-decoration: underline; }

.post-featured-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.cta-box {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin: 64px 24px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.cta-box h3 { margin-bottom: 24px; }
.cta-box .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   ARCHIVE
   =========================== */
.archive-header {
  background: var(--color-dark);
  padding: 140px 24px 64px;
  text-align: center;
}
.archive-header h1 { color: var(--color-white); }
.archive-header p { color: rgba(255,255,255,0.6); margin-top: 16px; }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 64px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 24px 64px;
}
.pagination a, .pagination span {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}
.pagination a:hover, .pagination .current {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

@media (max-width: 860px) { .archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .archive-grid { grid-template-columns: 1fr; } }

/* ===========================
   CITY PAGE
   =========================== */
.city-hero {
  position: relative;
  padding: 160px 24px 96px;
  background: var(--color-dark);
  overflow: hidden;
}
.city-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.city-hero-content { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; }
.city-hero h1 { color: var(--color-white); margin-bottom: 16px; }
.city-hero p { color: rgba(255,255,255,0.75); max-width: 600px; }

/* ===========================
   404
   =========================== */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}
.page-404-num {
  font-family: var(--font-serif);
  font-size: 10rem;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -40px;
}
.page-404 h1 { margin-bottom: 16px; }
.page-404 p { color: var(--color-text-muted); margin-bottom: 32px; }

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   ADMIN BAR OFFSET
   =========================== */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* ===========================
   WORDPRESS CORE
   =========================== */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }
.aligncenter { margin: 0 auto; display: block; }
.wp-block-image figure { margin: 0; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  display: block;
  transition: opacity 0.2s ease;
}
.lightbox-img.fading { opacity: 0; }

.lightbox-caption {
  margin-top: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
  text-align: center;
}
.lightbox-counter {
  margin-top: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  font-family: var(--font-sans);
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  transition: background 0.2s;
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(184,147,90,0.7); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all 0.2s;
  z-index: 10000;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.lightbox-prev svg,
.lightbox-next svg { pointer-events: none; }

/* Kursor pointer na lightbox-able images */
[data-lightbox] { cursor: zoom-in; }

@media (max-width: 540px) {
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
}

/* ===========================
   ANGEBOT GALLERY
   =========================== */
.angebot-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.angebot-figure {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-cream);
  cursor: zoom-in;
  position: relative;
}

.angebot-figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s;
}

.angebot-figure:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

.angebot-figure figcaption {
  padding: 7px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-align: center;
  background: var(--color-cream);
}

.angebot-figure::after {
  content: '🔍';
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.angebot-figure:hover::after { opacity: 1; }

@media (max-width: 860px) { .angebot-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .angebot-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ===========================
   BACK TO TOP BUTTON
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  box-shadow: 0 4px 16px rgba(184,147,90,0.4);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-gold-light);
  box-shadow: 0 6px 24px rgba(184,147,90,0.5);
}
@media (max-width: 540px) {
  .back-to-top { bottom: 20px; right: 16px; width: 42px; height: 42px; }
}

/* ===========================
   NAV DROPDOWN
   =========================== */
.nav-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: color var(--transition);
  text-decoration: none;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-wrap:hover .nav-dropdown-trigger { color: var(--color-gold); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 8px 0;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--color-dark);
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  text-transform: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-dropdown li a:hover {
  color: var(--color-gold);
  background: rgba(184,147,90,0.08);
  padding-left: 26px;
}

/* Mobile dropdown */
@media (max-width: 860px) {
  .nav-dropdown-wrap { flex-direction: column; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    min-width: auto;
  }
  .nav-dropdown::before { display: none; }
  .nav-dropdown li a {
    font-size: 1rem;
    padding: 6px 0;
    color: rgba(255,255,255,0.6);
  }
  .nav-dropdown-trigger svg { display: none; }
}

/* Transparent bridge — prevents hover gap between trigger and dropdown */
.nav-dropdown-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 16px;
  background: transparent;
}

/* ===========================
   LIGHTBOX
   =========================== */
#lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
#lb-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.lb-inner {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#lb-img {
  max-width: 90vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity 0.15s ease;
  display: block;
}
.lb-caption {
  color: rgba(255,255,255,0.70);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-align: center;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: background 0.2s;
  z-index: 10000;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.lb-close { top: 20px; right: 20px; font-size: 26px; }
.lb-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 16px; top: 50%; transform: translateY(-50%); }

@media (max-width: 540px) {
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
  #lb-img  { max-height: 75vh; }
}

/* ===========================
   CONTACT FORM 7 STYLING
   =========================== */
.wpcf7 { width: 100%; }

.wpcf7 form.wpcf7-form { display: flex; flex-direction: column; gap: 0; }

.wpcf7 p {
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wpcf7 label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184,147,90,0.12);
}

.wpcf7 textarea { min-height: 120px; resize: vertical; }

.wpcf7 select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9590' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Submit button */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  width: 100%;
  padding: 14px 28px;
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.wpcf7 input[type="submit"]:hover { background: #a07c4a; transform: translateY(-1px); }
.wpcf7 input[type="submit"]:disabled { background: var(--color-border); cursor: not-allowed; }

/* Validation messages */
.wpcf7-not-valid-tip {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}
.wpcf7-not-valid input,
.wpcf7-not-valid select,
.wpcf7-not-valid textarea { border-color: #c0392b !important; }

.wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  border: none !important;
}
.wpcf7-form.sent .wpcf7-response-output {
  background: #eaf3e8;
  color: #2d7a26;
}
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output {
  background: #fbeaea;
  color: #c0392b;
}

/* Spinner */
.wpcf7 .wpcf7-spinner { display: none; }

/* Dark section form (kontakt) */
.section-dark .wpcf7 input,
.section-dark .wpcf7 textarea,
.section-dark .wpcf7 select {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--color-white);
}
.section-dark .wpcf7 input::placeholder,
.section-dark .wpcf7 textarea::placeholder { color: rgba(255,255,255,0.35); }
.section-dark .wpcf7 input:focus,
.section-dark .wpcf7 textarea:focus { border-color: var(--color-gold); }
.section-dark .wpcf7 label { color: rgba(255,255,255,0.5); }


/* ══════════════════════════════════════════════
   MOBILE NAV — KOMPLETNA WERSJA
   ══════════════════════════════════════════════ */
@media (max-width: 860px) {

  /* Hamburger visible */
  .hamburger { display: flex; z-index: 1100; position: relative; }

  /* Full-screen overlay */
  .primary-nav {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #1A1916 !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 1050 !important;
    overflow-y: auto;
    padding: 80px 24px 40px;
    -webkit-overflow-scrolling: touch;
  }

  .nav-open .primary-nav {
    display: flex !important;
    background: #1A1916 !important;
  }

  /* Nav list */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    list-style: none;
  }

  .nav-links > li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  /* Top-level links */
  .nav-links > li > a {
    display: block;
    padding: 16px 0;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
  }

  .nav-links > li > a:hover,
  .nav-links > li > a:focus {
    color: var(--color-gold);
  }

  /* Dropdown wrapper */
  .nav-dropdown-wrap {
    width: 100%;
  }

  .nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .nav-dropdown-trigger svg {
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }

  .nav-dropdown-wrap.mob-open .nav-dropdown-trigger svg {
    transform: rotate(180deg);
  }

  /* Dropdown panel — hidden by default on mobile */
  .nav-dropdown {
    display: none;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: all !important;
    background: rgba(255,255,255,0.05) !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    min-width: auto !important;
    padding: 4px 0 12px !important;
    width: 100%;
  }

  /* Show dropdown when mob-open */
  .nav-dropdown-wrap.mob-open .nav-dropdown {
    display: block !important;
  }

  /* Dropdown links */
  .nav-dropdown li { list-style: none; }
  .nav-dropdown li a {
    display: block;
    padding: 10px 24px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    text-transform: none;
    transition: color 0.2s;
  }
  .nav-dropdown li a:hover { color: var(--color-gold); }

  /* CTA button in nav */
  .primary-nav .btn-cta {
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Close button placeholder - hamburger serves as close */
  .nav-open .hamburger { z-index: 1100; }
}

/* ── Hamburger fix when nav open ───────────────────── */
@media (max-width: 860px) {

  /* Hamburger always fixed & visible above overlay */
  body.nav-open .hamburger {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 1200 !important;
    background: #1A1916 !important;
    padding: 10px 12px !important;
    border-radius: 4px !important;
  }

  /* Hamburger lines → X when open */
  body.nav-open .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  body.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  body.nav-open .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Prevent scroll behind overlay */
  body.nav-open {
    overflow: hidden !important;
    height: 100% !important;
  }
  html.nav-open {
    overflow: hidden !important;
    height: 100% !important;
  }
}
