/* ============================================
   MABV Modern Art Bau & Vertrieb
   Onepager Stylesheet – v2.0
   Conversion-optimiert | Animierter Hero
   ============================================ */

/* Google Fonts werden via <link> im HTML <head> geladen (non-blocking) */


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

:root {
  --gold: #c8a96e;
  --gold-bright: #e0c08a;
  --gold-dark: #a8894e;
  --dark: #1a1a18;
  --dark2: #252520;
  --dark3: #0f0f0e;
  --text: #1f1f1d;
  --text-muted: #6b6b65;
  --text-light: #9a9a92;
  --bg: #ffffff;
  --bg2: #f7f6f1;
  --bg3: #eeece5;
  --border: rgba(0,0,0,0.10);
  --border-strong: rgba(0,0,0,0.16);
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.10);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text); background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ╔════════════════════════════════════════════
   ACCESSIBILITY
   ════════════════════════════════════════════ */
.skip-link {
  position: absolute; top: -100px; left: 12px;
  z-index: 10000;
  background: var(--gold); color: var(--dark);
  padding: 12px 20px; border-radius: 8px;
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  transition: top 0.2s var(--ease);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

/* Visible focus ring for keyboard navigation (does NOT affect mouse users) */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Form fields handle their own focus via box-shadow */
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: none;
}

/* ╔════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,26,24,0.85); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 64px;
  border-bottom: 1px solid rgba(200,169,110,0.18);
  transition: background 0.3s var(--ease), height 0.3s var(--ease);
}
nav.scrolled { background: rgba(26,26,24,0.97); height: 58px; }
.nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.nav-logo-main { font-family: 'Playfair Display', serif; font-size: 1.18rem; font-weight: 900; color: #fff; letter-spacing: 0.5px; }
.nav-logo-main span { color: var(--gold); }
.nav-logo-sub { font-size: 9px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 2px; }
.nav-links { display: flex; gap: 1.7rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 13.5px; font-weight: 400;
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important; color: var(--dark) !important;
  font-weight: 600 !important; padding: 8px 18px; border-radius: 6px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease) !important;
}
.nav-cta:hover { background: var(--gold-bright) !important; transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; width: 44px; height: 44px; align-items: center; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.2s; }
.nav-mobile { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--dark); border-top: 1px solid rgba(200,169,110,0.2); padding: 1rem 2rem; z-index: 99; }
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; color: rgba(255,255,255,0.75); text-decoration: none; font-size: 15px; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }

/* ╔════════════════════════════════════════════
   HERO – Animierter Bauplan-Hintergrund
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 9rem 2rem 5rem;
  background: linear-gradient(135deg, #0f0f0e 0%, #1a1a18 60%, #1f1c16 100%);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.bp-svg-mobile { display: none; }
@media (max-width: 768px) {
  .bp-svg-desktop { display: none; }
  .bp-svg-mobile {
    display: block;
    /* Dim the blueprint on mobile — it should whisper, not shout */
    opacity: 0.4;
  }
}
/* Subtle vignette */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(15,15,14,0.85) 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  /* Stronger darken on mobile so text reads cleanly and the plan feels like texture */
  .hero::after {
    background:
      radial-gradient(ellipse 80% 60% at 50% 45%, rgba(15,15,14,0.55) 0%, rgba(15,15,14,0.78) 70%, rgba(15,15,14,0.92) 100%);
  }
}

.hero-inner {
  position: relative; z-index: 3;
  max-width: 820px; margin: 0 auto; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,169,110,0.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(200,169,110,0.32);
  color: var(--gold); font-size: 11px; font-weight: 500;
  letter-spacing: 2.4px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.7s var(--ease) 0.1s both;
}
.hero-badge i { font-size: 13px; }
.hero-badge .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  position: relative;
}
.hero-badge .pulse::before {
  content: ''; position: absolute; inset: -2px;
  border-radius: 50%; background: var(--gold);
  opacity: 0.5; animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.6); opacity: 0; }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800; color: #fff;
  line-height: 1.04; letter-spacing: 1.5px;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.hero h1 em {
  color: var(--gold); font-style: normal;
  display: inline-block; position: relative;
}
.hero h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineGrow 1.2s var(--ease) 1s both;
  transform-origin: center;
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-tagline {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.6rem;
  animation: fadeUp 0.8s var(--ease) 0.35s both;
}
.hero-motto {
  font-size: 0.95rem; color: var(--gold);
  font-style: italic; font-family: 'Playfair Display', serif;
  margin-bottom: 2.6rem;
  animation: fadeUp 0.8s var(--ease) 0.45s both;
}

.hero-ctas {
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 2.8rem;
  animation: fadeUp 0.8s var(--ease) 0.55s both;
}

.hero-meta {
  display: flex; justify-content: center; gap: 2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.7s both;
}
.hero-meta a, .hero-meta span {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.95rem; transition: color 0.2s;
}
.hero-meta a:hover { color: var(--gold); }
.hero-meta i { color: var(--gold); font-size: 18px; }

/* Scroll Indicator */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,0.4); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 0.8s var(--ease) 1s both;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative; overflow: hidden;
}
.hero-scroll-line::before {
  content: ''; position: absolute; top: -40%; left: 0; right: 0;
  height: 40%; background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -40%; }
  100% { top: 100%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Bauplan-SVG-Animationen ─────────────────── */
.bp-grid line { stroke: rgba(200,169,110,0.10); stroke-width: 1; }
.bp-grid line.major { stroke: rgba(200,169,110,0.18); stroke-width: 1; }

.bp-line { stroke: var(--gold); stroke-width: 1.5; fill: none; stroke-linecap: round; }
.bp-line-thin { stroke: rgba(200,169,110,0.55); stroke-width: 1; fill: none; }
.bp-fill { fill: rgba(200,169,110,0.07); stroke: rgba(200,169,110,0.4); stroke-width: 1; }

.bp-draw {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 5s var(--ease) forwards;
}
.bp-draw-d1 { animation-delay: 0.3s; }
.bp-draw-d2 { animation-delay: 0.6s; }
.bp-draw-d3 { animation-delay: 0.9s; }
.bp-draw-d4 { animation-delay: 1.2s; }
.bp-draw-d5 { animation-delay: 1.5s; }
.bp-draw-d6 { animation-delay: 1.8s; }
.bp-draw-d7 { animation-delay: 2.1s; }
.bp-draw-d8 { animation-delay: 2.4s; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.bp-fade {
  opacity: 0;
  animation: bpFade 1.2s var(--ease) forwards;
}
.bp-fade-d1 { animation-delay: 2.4s; }
.bp-fade-d2 { animation-delay: 2.7s; }
.bp-fade-d3 { animation-delay: 3.0s; }
.bp-fade-d4 { animation-delay: 3.3s; }

@keyframes bpFade {
  to { opacity: 1; }
}

.bp-dim { fill: rgba(200,169,110,0.55); font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 1px; }
.bp-label { fill: rgba(200,169,110,0.7); font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; }
.bp-corner { stroke: var(--gold); stroke-width: 1; fill: none; }

/* Slow floating motion */
.bp-float {
  animation: bpFloat 14s ease-in-out infinite;
  transform-origin: center;
}
@keyframes bpFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-6px, -4px); }
}

/* Compass rotation */
.bp-rotate {
  transform-origin: center;
  transform-box: fill-box;
  animation: bpRotate 30s linear infinite;
}
@keyframes bpRotate {
  to { transform: rotate(360deg); }
}

/* Pulsing dots */
.bp-dot {
  fill: var(--gold);
  animation: dotPulse 3s ease-in-out infinite;
}
.bp-dot-d1 { animation-delay: 0s; }
.bp-dot-d2 { animation-delay: 0.5s; }
.bp-dot-d3 { animation-delay: 1s; }
.bp-dot-d4 { animation-delay: 1.5s; }
.bp-dot-d5 { animation-delay: 2s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.4; r: 2; }
  50% { opacity: 1; r: 3; }
}

@media (prefers-reduced-motion: reduce) {
  .bp-draw, .bp-fade, .bp-float, .bp-rotate, .bp-dot, .hero-badge .pulse::before,
  .hero h1 em::after, .hero-scroll-line::before { animation: none !important; }
  .bp-draw, .bp-fade { stroke-dashoffset: 0 !important; opacity: 1 !important; }
}

/* ╔════════════════════════════════════════════
   USP STRIP (Trust Bar)
   ════════════════════════════════════════════ */
.usp-strip {
  background: var(--dark2);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(200,169,110,0.18);
  position: relative;
  z-index: 4;
}
.usp-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(200,169,110,0.4), transparent);
}
.usp-item {
  padding: 1.8rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: background 0.3s var(--ease);
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: rgba(200,169,110,0.04); }
.usp-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,169,110,0.12); margin-bottom: 10px;
}
.usp-icon i { color: var(--gold); font-size: 18px; }
.usp-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--gold); line-height: 1;
  margin-bottom: 4px;
}
.usp-label {
  font-size: 11.5px; color: rgba(255,255,255,0.55);
  line-height: 1.5; letter-spacing: 0.3px;
}

/* ╔════════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════════ */
.section {
  max-width: 1100px; margin: 0 auto;
  padding: 5.5rem 2rem;
}
.section-narrow { max-width: 900px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.section-tag::before, .section-tag::after {
  content: ''; width: 24px; height: 1px; background: var(--gold);
  opacity: 0.5;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700; color: var(--text);
  line-height: 1.15; margin-bottom: 0.8rem;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-sub {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 620px; margin: 0 auto; line-height: 1.6;
}

.section-bg { background: var(--bg2); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ╔════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--dark);
  text-decoration: none; font-size: 14.5px; font-weight: 600;
  padding: 14px 26px; border-radius: 8px;
  transition: all 0.25s var(--ease);
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 14px rgba(200,169,110,0.25);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.btn-gold > * { position: relative; z-index: 1; }
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200,169,110,0.35);
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text);
  text-decoration: none; font-size: 14.5px; font-weight: 500;
  padding: 13px 24px; border-radius: 8px;
  border: 1.5px solid var(--border-strong);
  transition: all 0.25s var(--ease); cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.92);
  text-decoration: none; font-size: 14.5px; font-weight: 500;
  padding: 13px 24px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.25s var(--ease); cursor: pointer;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ╔════════════════════════════════════════════
   LEISTUNGEN & REFERENZEN CAROUSEL
   ════════════════════════════════════════════ */
.carousel {
  position: relative;
  margin: 0 -2rem; /* bleed full-width for nicer edge fade */
}
.carousel-viewport {
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}
.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 28px; /* room for shadow + dots */
  /* Make snap stop at the very left for clean alignment */
  scroll-padding-left: 0;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 calc((100% - 2 * 18px) / 3); /* 3 cards on desktop */
  scroll-snap-align: start;
  min-width: 0;
}

.carousel-nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
  transition: all 0.2s var(--ease);
  font-size: 0;
}
.carousel-nav i { font-size: 22px; color: var(--text); }
.carousel-nav:hover:not(:disabled) {
  background: var(--gold); border-color: var(--gold);
}
.carousel-nav:hover:not(:disabled) i { color: var(--dark); }
.carousel-nav:disabled {
  opacity: 0.35; cursor: not-allowed;
}
.carousel-nav.prev { left: -8px; }
.carousel-nav.next { right: -8px; }

.carousel-dots {
  display: flex; justify-content: center; gap: 4px;
  margin-top: 1.4rem;
}
.carousel-dot {
  /* Hit-area 32x32 with visual dot in center */
  width: 32px; height: 32px;
  padding: 12px;
  background-clip: content-box;
  background-color: rgba(0,0,0,0.18);
  border-radius: 50%;
  border: none; cursor: pointer;
  transition: background-color 0.25s var(--ease), padding 0.25s var(--ease);
}
.carousel-dot.active {
  background-color: var(--gold);
  padding: 12px 6px;
  border-radius: 12px;
}
.carousel-dot:hover { background-color: rgba(200,169,110,0.5); }

/* Carousel context for dark sections */
.section-dark .carousel-nav,
.section-bg .carousel-nav { background: var(--bg); }

/* ╔════════════════════════════════════════════
   LEISTUNGEN CARDS (used inside carousel)
   ════════════════════════════════════════════ */
.leistung-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
}
.leistung-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.leistung-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,169,110,0.3);
}
.leistung-card:hover::before { transform: scaleX(1); }
.leistung-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(200,169,110,0.15), rgba(200,169,110,0.06));
  margin-bottom: 14px;
  transition: transform 0.3s var(--ease);
}
.leistung-card:hover .leistung-card-icon { transform: scale(1.08) rotate(-3deg); }
.leistung-card-icon i { font-size: 24px; color: var(--gold); }
.leistung-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 8px; color: var(--text);
}
.leistung-card p {
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.65;
}

/* ╔════════════════════════════════════════════
   PROZESS / SO ARBEITEN WIR
   ════════════════════════════════════════════ */
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 1rem;
}
.prozess-step {
  position: relative;
  padding: 1.6rem 1.4rem 1.4rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.prozess-step:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,110,0.35);
  box-shadow: var(--shadow-md);
}
.prozess-num {
  position: absolute; top: -16px; left: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(200,169,110,0.3);
}
.prozess-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  margin: 1rem 0 0.5rem;
}
.prozess-step p {
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.6;
}
.prozess-step i {
  font-size: 22px; color: var(--gold);
  margin-bottom: 4px; display: block;
}

/* ╔════════════════════════════════════════════
   ÜBER UNS – Split
   ════════════════════════════════════════════ */
.about-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem; align-items: center;
}
.about-text p {
  font-size: 15.5px; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 1rem;
}
.about-text p strong { color: var(--text); font-weight: 600; }
.about-cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
.about-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  transition: all 0.25s var(--ease);
}
.about-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.about-card i {
  font-size: 22px; color: var(--gold);
  flex-shrink: 0; margin-top: 2px;
}
.about-card h4 { font-size: 14.5px; font-weight: 600; margin-bottom: 3px; }
.about-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ╔════════════════════════════════════════════
   REFERENZEN
   ════════════════════════════════════════════ */
.referenz-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: all 0.3s var(--ease);
  position: relative;
  height: 100%;
}
.referenz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,169,110,0.35);
}
.referenz-icon {
  background: linear-gradient(135deg, rgba(200,169,110,0.15), rgba(200,169,110,0.05));
  border-radius: 12px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.referenz-icon i { font-size: 26px; color: var(--gold); }
.referenz-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.referenz-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 8px; line-height: 1.3;
}
.referenz-content p {
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 10px;
}
.referenz-ort {
  font-size: 12px; color: var(--text-light);
  display: inline-flex; align-items: center; gap: 4px;
}
.referenz-ort i { font-size: 14px; color: var(--gold); }

/* ╔════════════════════════════════════════════
   TESTIMONIAL / QUOTE
   ════════════════════════════════════════════ */
.quote-band {
  background: var(--dark);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '"';
  position: absolute; top: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 14rem; font-weight: 900;
  color: rgba(200,169,110,0.08);
  line-height: 1;
}
.quote-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic; font-weight: 400;
  color: #fff; line-height: 1.45;
  margin-bottom: 1.5rem;
}
.quote-author {
  font-size: 12.5px; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase;
}

/* ╔════════════════════════════════════════════
   KARTE / EINSATZGEBIET
   ════════════════════════════════════════════ */
.einsatz-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem; align-items: stretch;
}
.einsatz-info {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.einsatz-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.8rem;
}
.einsatz-info p {
  font-size: 14.5px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 1.2rem;
}
.einsatz-orte {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 1.2rem;
}
.einsatz-ort {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text); font-size: 12.5px;
  padding: 5px 12px; border-radius: 100px;
  font-weight: 500;
  transition: all 0.2s;
}
.einsatz-ort:hover {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
}
/* Honeypot field for spam protection - completely invisible to humans, accessible to bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.hp-field label,
.hp-field input {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
}

.einsatz-karte {
  margin: 0;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.einsatz-karte img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.einsatz-karte figcaption {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

/* ╔════════════════════════════════════════════
   KONTAKT / FORMULAR
   ════════════════════════════════════════════ */
.kontakt-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem; align-items: start;
}
.kontakt-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 1.5rem;
}
.kontakt-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 1.3rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--border);
}
.kontakt-item:last-of-type { border-bottom: none; }
.kontakt-item i {
  font-size: 22px; color: var(--gold);
  flex-shrink: 0; margin-top: 2px;
}
.kontakt-item strong {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-light); margin-bottom: 3px;
}
.kontakt-item a, .kontakt-item span {
  font-size: 15px; color: var(--text);
  text-decoration: none; font-weight: 500;
}
.kontakt-item a:hover { color: var(--gold); }
.kontakt-hinweis {
  background: linear-gradient(135deg, rgba(200,169,110,0.10), rgba(200,169,110,0.04));
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: var(--radius);
  padding: 1rem 1.2rem; margin-top: 1.5rem;
  display: flex; gap: 10px; align-items: flex-start;
}
.kontakt-hinweis i { font-size: 18px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.kontakt-hinweis p { font-size: 13px; color: var(--text); line-height: 1.55; }
.kontakt-hinweis strong { color: var(--text); font-weight: 600; }

.form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 0.4rem;
}
.form-sub {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 1.8rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row { margin-bottom: 16px; }
.form-row.full { grid-column: 1/-1; }
.field-label {
  display: block; font-size: 11.5px; font-weight: 600;
  color: var(--text-light); letter-spacing: 0.8px;
  text-transform: uppercase; margin-bottom: 7px;
}
.field-label .optional {
  font-weight: 400; text-transform: none;
  letter-spacing: 0.2px; opacity: 0.7;
}
input[type="text"], input[type="tel"], input[type="email"], textarea, select {
  width: 100%; font-family: 'DM Sans', sans-serif; font-size: 14.5px;
  color: var(--text); background: var(--bg2);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 14px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none; appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold); background: var(--bg);
  box-shadow: 0 0 0 4px rgba(200,169,110,0.12);
}
input.invalid, textarea.invalid, select.invalid {
  border-color: #e53e3e; background: #fff5f5;
}
.field-error { font-size: 12px; color: #e53e3e; margin-top: 4px; display: none; }
.field-error.visible { display: block; }
textarea { min-height: 120px; resize: vertical; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%236b6b65' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px; cursor: pointer;
}
.check-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.check-label {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text);
  cursor: pointer; user-select: none;
  padding: 10px 12px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--bg2);
  transition: all 0.2s;
}
.check-label:hover { border-color: rgba(200,169,110,0.5); background: var(--bg); }
.check-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold); flex-shrink: 0;
}
.check-label input[type="checkbox"]:checked + span,
.check-label:has(input[type="checkbox"]:checked) {
  border-color: var(--gold);
  background: rgba(200,169,110,0.08);
  font-weight: 500;
}
.privacy-note {
  font-size: 12px; color: var(--text-light);
  line-height: 1.55; margin: 16px 0 16px;
}
.submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: var(--gold); color: var(--dark);
  border: none; border-radius: var(--radius);
  padding: 16px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 14px rgba(200,169,110,0.25);
}
.submit-btn:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(200,169,110,0.35);
}
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.success-box {
  display: none; background: #f0faf4;
  border: 1px solid #a8dbb9; border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center; margin-top: 1.5rem;
}
.success-box i { font-size: 48px; color: #2d8a57; margin-bottom: 12px; display: block; }
.success-box h3 { font-size: 18px; font-weight: 600; color: #1d6640; margin-bottom: 8px; }
.success-box p { font-size: 14px; color: #3a8a60; line-height: 1.5; }
.error-box {
  display: none; background: #fff5f5;
  border: 1px solid #fca5a5; border-radius: var(--radius-lg);
  padding: 1rem 1.2rem; margin-top: 1rem;
  font-size: 13.5px; color: #b91c1c;
}

/* ╔════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════ */
.cta-final {
  background: linear-gradient(135deg, var(--dark) 0%, #2a261c 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(200,169,110,0.03) 60px, rgba(200,169,110,0.03) 61px);
}
.cta-final-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700; color: #fff;
  margin-bottom: 1rem;
}
.cta-final h2 em { color: var(--gold); font-style: normal; }
.cta-final p {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  margin-bottom: 2rem; line-height: 1.6;
}
.cta-final-buttons {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}

/* ╔════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
footer { background: var(--dark3); padding: 3.5rem 2rem 2rem; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900;
  color: #fff; margin-bottom: 6px;
}
.footer-logo span { color: var(--gold); }
.footer-logo-block p {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.6; margin-bottom: 1rem;
}
.footer-col h4 {
  font-size: 11px; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; font-weight: 700;
}
.footer-col a, .footer-col p {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 13.5px; margin-bottom: 10px;
  line-height: 1.4; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col i { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.footer-bottom {
  max-width: 1100px; margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── Selenova Footer-Credit ── */
.selenova-credit {
  display: inline-flex;
  align-items: center;
  font-family: 'JetBrains Mono', 'Inter', system-ui, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}
.selenova-credit a {
  color: inherit;
  text-decoration: none;
  margin-left: 0.4em;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.selenova-credit a:hover {
  color: var(--gold);
  border-bottom-color: currentColor;
}

/* ╔════════════════════════════════════════════
   COOKIE BANNER
   ════════════════════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: auto;
  max-width: 360px; z-index: 9999;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 12px;
  opacity: 0; visibility: hidden;
  transform: translateY(calc(100% + 32px));
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease), visibility 0s linear 0.5s;
}
#cookie-banner.visible {
  opacity: 1; visibility: visible;
  transform: translateY(0);
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease), visibility 0s linear 0s;
}
#cookie-banner.hidden {
  display: none !important;
}
.cookie-top { display: flex; align-items: flex-start; gap: 12px; }
.cookie-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.cookie-text h3 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.cookie-text p { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }
.cookie-text a { color: var(--gold); }
.cookie-buttons { display: flex; gap: 8px; }
.cookie-btn-accept {
  flex: 1; background: var(--gold); color: var(--dark);
  border: none; border-radius: 8px; padding: 10px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--gold-bright); }
.cookie-btn-reject {
  flex: 1; background: transparent; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 16px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; cursor: pointer;
}
.cookie-btn-reject:hover { border-color: var(--text-muted); }

/* ╔════════════════════════════════════════════
   FLOATING CTA (Mobile)
   ════════════════════════════════════════════ */
.floating-cta {
  position: fixed; bottom: 20px; right: 20px;
  z-index: 90;
  background: var(--gold); color: var(--dark);
  border-radius: 100px;
  padding: 12px 20px;
  display: none; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(200,169,110,0.45);
  transition: transform 0.25s var(--ease);
}
.floating-cta:hover { transform: translateY(-2px); }
.floating-cta i { font-size: 18px; }

/* ╔════════════════════════════════════════════
   SCROLL ANIMATIONS (Progressive Enhancement)
   Elements are visible by default. Animation only
   activates when JS adds .js-ready to <html>.
   ════════════════════════════════════════════ */
.js-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.js-ready .reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js-ready .reveal-left.visible { opacity: 1; transform: translateX(0); }
.js-ready .reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js-ready .reveal-right.visible { opacity: 1; transform: translateX(0); }
.js-ready .stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js-ready .stagger.visible > *:nth-child(1)  { opacity:1; transform:translateY(0); transition-delay:0.04s; }
.js-ready .stagger.visible > *:nth-child(2)  { opacity:1; transform:translateY(0); transition-delay:0.10s; }
.js-ready .stagger.visible > *:nth-child(3)  { opacity:1; transform:translateY(0); transition-delay:0.16s; }
.js-ready .stagger.visible > *:nth-child(4)  { opacity:1; transform:translateY(0); transition-delay:0.22s; }
.js-ready .stagger.visible > *:nth-child(5)  { opacity:1; transform:translateY(0); transition-delay:0.28s; }
.js-ready .stagger.visible > *:nth-child(6)  { opacity:1; transform:translateY(0); transition-delay:0.34s; }
.js-ready .stagger.visible > *:nth-child(7)  { opacity:1; transform:translateY(0); transition-delay:0.40s; }
.js-ready .stagger.visible > *:nth-child(8)  { opacity:1; transform:translateY(0); transition-delay:0.46s; }
.js-ready .stagger.visible > *:nth-child(9)  { opacity:1; transform:translateY(0); transition-delay:0.52s; }
.js-ready .stagger.visible > *:nth-child(10) { opacity:1; transform:translateY(0); transition-delay:0.58s; }
.js-ready .stagger.visible > *:nth-child(11) { opacity:1; transform:translateY(0); transition-delay:0.64s; }
.js-ready .stagger.visible > *:nth-child(12) { opacity:1; transform:translateY(0); transition-delay:0.70s; }

@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal, .js-ready .reveal-left, .js-ready .reveal-right, .js-ready .stagger > * { opacity:1 !important; transform:none !important; }
}

/* ╔════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 960px) {
  .prozess-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap, .kontakt-wrap, .einsatz-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; }
  /* 2 slides visible on tablet */
  .carousel-slide { flex-basis: calc((100% - 18px) / 2); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  nav { padding: 0 1.2rem; }
  .hero { padding: 7rem 1.2rem 4rem; min-height: auto; }
  .hero-meta { flex-direction: column; gap: 0.8rem; align-items: center; }
  .hero-scroll { display: none; }
  .usp-strip { grid-template-columns: repeat(4, 1fr); }
  .usp-item {
    padding: 1rem 0.4rem;
    border-right: 1px solid rgba(255,255,255,0.05) !important;
    border-bottom: none !important;
  }
  .usp-item:last-child { border-right: none !important; }
  .usp-icon { width: 28px; height: 28px; margin-bottom: 6px; }
  .usp-icon i { font-size: 14px; }
  .usp-num { font-size: 1.2rem; margin-bottom: 2px; }
  .usp-label { font-size: 9.5px; line-height: 1.35; letter-spacing: 0.2px; }
  .section { padding: 3.5rem 1.2rem; }
  .prozess-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 1.8rem 1.4rem; }
  .form-grid, .check-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .quote-band { padding: 3rem 1.2rem; }
  .quote-band::before { font-size: 9rem; top: -10px; }
  .cta-final { padding: 3.5rem 1.2rem; }
  .floating-cta { display: inline-flex; }
  #cookie-banner { left: 12px; right: 12px; bottom: 80px; padding: 1.1rem; max-width: none; }
  /* Carousel: 1 slide on mobile, peek next */
  .carousel { margin: 0 -1.2rem; }
  .carousel-viewport { padding: 0 1.2rem; }
  .carousel-slide { flex-basis: 88%; }
  .carousel-nav { display: none; } /* swipe instead */
  .carousel-track { padding-bottom: 20px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  /* USPs stay side-by-side on phone, even smaller */
  .usp-item { padding: 0.85rem 0.3rem; }
  .usp-icon { width: 24px; height: 24px; margin-bottom: 4px; }
  .usp-icon i { font-size: 12px; }
  .usp-num { font-size: 1.05rem; }
  .usp-label { font-size: 8.5px; line-height: 1.3; }
  .hero { padding: 6.5rem 1rem 4rem; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); letter-spacing: 0.5px; line-height: 1.08; }
  .hero-badge { font-size: 10px; padding: 6px 12px; letter-spacing: 1.8px; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-motto { font-size: 0.85rem; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 10px; }
  .hero-ctas .btn-gold, .hero-ctas .btn-outline-light { width: 100%; justify-content: center; }
  .hero-meta { font-size: 0.85rem; }
  .carousel-slide { flex-basis: 90%; }
}
