/* =========================================================
   Parkett & Bodentechnik Oedekoven GmbH
   Modern Redesign – Dark Luxury / Editorial · v2 (depth + motion)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Design System – Farben */
  --po-black:     #0C0A08;
  --po-dark:      #181410;
  --po-mid:       #2A2218;
  --po-gold:      #C09A52;
  --po-gold-lt:   #D4B278;
  --po-cream:     #F6F1E8;
  --po-light:     #EFEBE0;
  --po-border:    #DDD6C4;
  --po-text:      #2E2518;
  --po-muted:     #857A6A;
  --po-white:     #FFFFFF;

  /* Typografie */
  --po-font-display: 'Outfit', system-ui, sans-serif;
  --po-font-body:    'Inter', system-ui, sans-serif;

  --po-radius:    0px;
  --po-radius-sm: 2px;

  /* Shadow-System (mehrlagig, weich) */
  --shadow-xs:    0 1px 3px rgba(24,20,16,.04);
  --shadow-sm:    0 2px 8px rgba(24,20,16,.06), 0 1px 3px rgba(24,20,16,.04);
  --shadow-md:    0 12px 28px rgba(24,20,16,.08), 0 4px 10px rgba(24,20,16,.04);
  --shadow-lg:    0 24px 60px rgba(24,20,16,.12), 0 8px 16px rgba(24,20,16,.06);
  --shadow-xl:    0 40px 100px rgba(24,20,16,.18), 0 12px 24px rgba(24,20,16,.08);
  --shadow-gold:  0 24px 60px rgba(192,154,82,.30), 0 8px 16px rgba(192,154,82,.18);
  --shadow-dark:  0 30px 70px rgba(0,0,0,.45), 0 10px 20px rgba(0,0,0,.25);

  /* Easing */
  --ease-out:  cubic-bezier(.16,.84,.44,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

/* ----------  Reset & Base  ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: var(--po-font-body);
  background: var(--po-white);
  color: var(--po-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  min-width: 0;
}
img, svg { max-width: 100%; }
img      { display: block; }
a        { color: inherit; text-decoration: none; }

/* ----------  Typografie  ---------- */
.display-1 {
  font-family: var(--po-font-display);
  font-size: clamp(2.6rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--po-white);
  word-break: break-word;
}
.display-2 {
  font-family: var(--po-font-display);
  font-size: clamp(2.1rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--po-text);
  word-break: break-word;
}
.display-3 {
  font-family: var(--po-font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-break: break-word;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--po-font-display);
  font-weight: 700;
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--po-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--po-gold);
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--po-gold);
}

.body-lg { font-size: 1.15rem; line-height: 1.75; color: var(--po-muted); }
.body-sm { font-size: 0.9rem; color: var(--po-muted); }

/* ----------  Layout  ---------- */
.section { padding: 7rem 0; position: relative; overflow-x: clip; }
.section-sm { padding: 4rem 0; }
.section-dark  { background: var(--po-dark); }
.section-black { background: var(--po-black); }
.section-cream { background: var(--po-cream); }
.section-light { background: var(--po-light); }

.container       { max-width: 1200px; margin: 0 auto; padding: 0 2rem;   width: 100%; }
.container-wide  { max-width: 1440px; margin: 0 auto; padding: 0 2rem;   width: 100%; }

@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .container,
  .container-wide { padding: 0 1.25rem; }
}

/* ----------  Keyframes / Motion  ---------- */
@keyframes po-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes po-float-sm {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes po-rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes po-pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,154,82,.4); }
  70%      { box-shadow: 0 0 0 16px rgba(192,154,82,0); }
}
@keyframes po-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes po-fade-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes po-scale-in {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes po-glow {
  0%, 100% { opacity: .03; }
  50%      { opacity: .08; }
}
@keyframes po-bg-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Reveal-on-Scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-left  { transform: translateX(-40px); }
.reveal-left.is-visible  { transform: translateX(0); }
.reveal-right { transform: translateX(40px); }
.reveal-right.is-visible { transform: translateX(0); }
.reveal-scale { transform: scale(.94); }
.reveal-scale.is-visible { transform: scale(1); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }

.float-anim    { animation: po-float 6s ease-in-out infinite; }
.float-anim-2  { animation: po-float 7.5s ease-in-out -2s infinite; }
.float-anim-sm { animation: po-float-sm 5s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
  .float-anim, .float-anim-2, .float-anim-sm { animation: none !important; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ----------  Navigation  ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(12,10,8,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0;
  transition: background .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.navbar.on-light {
  background: rgba(255,255,255,.92);
  border-bottom-color: rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
}

/* Bootstrap macht .navbar > .container zu display:flex; .navbar-inner muss
   explizit die volle Breite einnehmen, sonst sitzt der Toggler in der Mitte */
.navbar > .container { width: 100%; max-width: 1200px; }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: relative;
  width: 100%;
  flex: 1 1 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--po-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--po-white) !important;
  letter-spacing: -0.01em;
  z-index: 5;
}
.navbar.on-light .nav-brand { color: var(--po-text) !important; }

.nav-brand-icon {
  width: 38px; height: 38px;
  background: var(--po-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(192,154,82,.35);
  transition: transform .3s var(--ease-out);
}
.nav-brand:hover .nav-brand-icon { transform: translateY(-2px) rotate(-4deg); }
.nav-brand-icon svg { width: 20px; height: 20px; color: var(--po-black); }

/* Bootstrap-Collapse Override: Menü auf Desktop immer sichtbar */
@media (min-width: 992px) {
  .navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
    justify-content: flex-end;
  }
  .navbar-toggler { display: none !important; }
}

.nav-links {
  display: flex; align-items: center; gap: 0;
  list-style: none; padding: 0; margin: 0;
}
.nav-links .nav-link {
  position: relative;
  color: rgba(255,255,255,.7) !important;
  font-size: .875rem;
  font-weight: 500;
  padding: 0 1.35rem;
  height: 76px;
  display: flex; align-items: center;
  transition: color .25s var(--ease-out);
}
.nav-links .nav-link::after {
  content: '';
  position: absolute;
  left: 1.35rem; right: 1.35rem;
  bottom: 24px;
  height: 2px;
  background: var(--po-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease-out);
}
.nav-links .nav-link:hover,
.nav-links .nav-link.active { color: var(--po-white) !important; }
.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after { transform: scaleX(1); }

.navbar.on-light .nav-links .nav-link { color: var(--po-muted) !important; }
.navbar.on-light .nav-links .nav-link:hover,
.navbar.on-light .nav-links .nav-link.active { color: var(--po-text) !important; }

.nav-cta {
  background: var(--po-gold);
  color: var(--po-black) !important;
  font-weight: 600;
  font-size: .875rem;
  padding: .7rem 1.5rem;
  letter-spacing: .01em;
  transition: background .25s, transform .25s, box-shadow .25s;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(192,154,82,.25);
  display: inline-flex; align-items: center;
}
.nav-cta:hover {
  background: var(--po-gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(192,154,82,.40);
}

/* Mobile Menü */
.navbar-toggler {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  padding: .5rem .65rem !important;
  z-index: 5;
  margin-left: auto;
  margin-right: 0;
  line-height: 1;
}
.navbar.on-light .navbar-toggler { border-color: rgba(0,0,0,.12) !important; }
.navbar.on-light .navbar-toggler svg line { stroke: rgba(0,0,0,.7); }

@media (max-width: 991.98px) {
  /* Toggler hart an den rechten Containerrand pinnen */
  .navbar-inner { position: relative; }
  .navbar-toggler {
    position: absolute !important;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
  }
  .navbar .navbar-collapse {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--po-black);
    border-top: 1px solid rgba(255,255,255,.06);
    box-shadow: var(--shadow-xl);
    padding: 1rem 0 1.5rem;
  }
  .navbar.on-light .navbar-collapse {
    background: var(--po-white);
    border-top-color: var(--po-border);
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0 1.25rem;
  }
  .nav-links .nav-link {
    height: auto;
    padding: .9rem .25rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .navbar.on-light .nav-links .nav-link { border-bottom-color: rgba(0,0,0,.06); }
  .nav-links .nav-link::after { display: none; }
  .nav-links .nav-link:hover,
  .nav-links .nav-link.active { padding-left: .8rem; color: var(--po-gold) !important; }
  .nav-cta {
    margin: 1.25rem 1.25rem 0 !important;
    display: inline-flex !important;
    justify-content: center;
  }
}

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--po-font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  padding: .95rem 2rem;
  border: none; cursor: pointer;
  transition: all .3s var(--ease-out);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease-out);
}
.btn:hover::before { transform: translateX(100%); }

.btn-gold {
  background: var(--po-gold);
  color: var(--po-black);
  box-shadow: 0 10px 28px rgba(192,154,82,.30), 0 4px 10px rgba(192,154,82,.18);
}
.btn-gold:hover {
  background: var(--po-gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(192,154,82,.42), 0 6px 14px rgba(192,154,82,.24);
}

.btn-outline {
  background: transparent;
  color: var(--po-white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  border-color: var(--po-white);
  background: rgba(255,255,255,.07);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--po-text);
  border: 1.5px solid var(--po-border);
}
.btn-outline-dark:hover {
  border-color: var(--po-text);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-arrow svg { width: 18px; height: 18px; transition: transform .3s var(--ease-out); position: relative; z-index: 1; }
.btn-arrow:hover svg { transform: translateX(5px); }

/* ----------  Hero  ---------- */
.hero {
  background: var(--po-black);
  min-height: calc(100vh - 76px);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 78% 50%, rgba(192,154,82,.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 30%, rgba(192,154,82,.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(192,154,82,.4), transparent);
}

/* Floating Hintergrund-Akzente */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: .35;
  animation: po-float 9s ease-in-out infinite;
}
.hero-orb.orb-1 { width: 320px; height: 320px; background: rgba(192,154,82,.30); top: -60px; right: 6%; }
.hero-orb.orb-2 { width: 240px; height: 240px; background: rgba(192,154,82,.18); bottom: 8%;  left: 2%;  animation-delay: -3s; }

/* Große Hintergrund-Zahl */
.hero-bg-number {
  position: absolute;
  right: -2rem; bottom: -3rem;
  font-family: var(--po-font-display);
  font-weight: 800;
  font-size: clamp(14rem, 25vw, 22rem);
  line-height: 1;
  color: rgba(255,255,255,.025);
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
  animation: po-glow 8s ease-in-out infinite;
}

.hero-content { position: relative; z-index: 2; }
.hero-rule    { width: 64px; height: 2px; background: var(--po-gold); margin: 2rem 0; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-meta-item {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.hero-meta-item strong {
  color: var(--po-white);
  font-size: 1.6rem;
  font-family: var(--po-font-display);
  font-weight: 700;
  line-height: 1;
}

/* Hero-Bild + Frame */
.hero-img {
  position: relative;
  z-index: 2;
}
.hero-img-frame {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-dark);
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--po-gold);
  z-index: -1;
  transition: transform .5s var(--ease-out);
}
.hero-img:hover .hero-img-frame::before { transform: translate(6px,6px); }

.hero-img .img-badge {
  position: absolute;
  bottom: -1.75rem; left: -1.75rem;
  background: var(--po-gold);
  color: var(--po-black);
  padding: 1.25rem 1.5rem;
  font-family: var(--po-font-display);
  font-weight: 700;
  line-height: 1.2;
  z-index: 3;
  min-width: 170px;
  box-shadow: var(--shadow-gold);
  animation: po-float-sm 5s ease-in-out infinite;
}
.hero-img .img-badge span  { display: block; font-size: 2.1rem; font-weight: 800; }
.hero-img .img-badge small { font-size: .75rem; font-weight: 500; text-transform: uppercase; letter-spacing: .12em; opacity: .85; }

.hero-img .img-tag {
  position: absolute;
  top: -1.25rem; right: -1.25rem;
  background: var(--po-white);
  color: var(--po-text);
  padding: .85rem 1.1rem;
  font-family: var(--po-font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .5rem;
  animation: po-float 6s ease-in-out -2s infinite;
}
.hero-img .img-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--po-gold);
  border-radius: 50%;
  animation: po-pulse-gold 2s infinite;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-weight: 600;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: hero-line 1.8s ease-in-out infinite;
}
@keyframes hero-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ----------  Bildplatzhalter  ---------- */
.ph {
  background:
    repeating-linear-gradient(
      45deg,
      var(--po-light) 0, var(--po-light) 10px,
      var(--po-border) 10px, var(--po-border) 20px
    );
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem;
  color: var(--po-muted);
  text-align: center;
  padding: 2rem;
}
.ph.ph-dark {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 10px,
      rgba(255,255,255,.06) 10px, rgba(255,255,255,.06) 20px
    );
  border: 1px dashed rgba(255,255,255,.15);
  color: rgba(255,255,255,.35);
}
.ph svg { width: 48px; height: 48px; opacity: .5; }
.ph-label { font-weight: 600; font-size: .85rem; }
.ph-hint  { font-size: .8rem; opacity: .7; }

/* ----------  Service Grid (Floating Cards) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .service-grid { grid-template-columns: 1fr; } }

.service-item {
  background: var(--po-white);
  padding: 2.75rem 2rem 2.25rem;
  position: relative;
  border: 1px solid var(--po-border);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out), background .45s var(--ease-out);
  cursor: default;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.service-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--po-gold);
  transition: height .5s var(--ease-out);
}
.service-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--po-text) 0%, var(--po-black) 100%);
  opacity: 0;
  transition: opacity .45s var(--ease-out);
  z-index: 0;
}
.service-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
  z-index: 2;
}
.service-item:hover::before { height: 100%; }
.service-item:hover::after  { opacity: 1; }
.service-item > * { position: relative; z-index: 1; }
.service-item:hover .si-number,
.service-item:hover .si-title,
.service-item:hover .si-text { color: var(--po-white); }
.service-item:hover .si-icon { color: var(--po-gold); transform: scale(1.1) rotate(-5deg); }
.service-item:hover .si-arrow { opacity: 1; transform: translateX(0); color: var(--po-gold); }

.si-number {
  font-family: var(--po-font-display);
  font-size: .75rem;
  font-weight: 600;
  color: var(--po-muted);
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
  transition: color .3s;
}
.si-icon {
  color: var(--po-gold);
  margin-bottom: 1.25rem;
  transition: color .3s, transform .4s var(--ease-out);
  display: inline-block;
}
.si-icon svg { width: 40px; height: 40px; }
.si-title {
  font-family: var(--po-font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--po-text);
  margin-bottom: .6rem;
  transition: color .3s;
}
.si-text {
  font-size: .875rem;
  color: var(--po-muted);
  line-height: 1.6;
  transition: color .3s;
}
.si-arrow {
  display: inline-flex; align-items: center;
  margin-top: 1.25rem;
  color: var(--po-gold);
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  opacity: 0; transform: translateX(-10px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.si-arrow svg { width: 16px; height: 16px; margin-left: .4rem; }

/* ----------  About Split  ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) { .about-split { grid-template-columns: 1fr; min-height: 0; } }

.about-img {
  position: relative;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--po-cream) 0%, var(--po-light) 100%);
}
@media (max-width: 768px) { .about-img { padding: 1.5rem; } }
.about-img .ph { min-height: 480px; box-shadow: var(--shadow-lg); }
.about-img::before {
  content: '';
  position: absolute;
  top: 5rem; left: 5rem; bottom: 1rem; right: 1rem;
  border: 2px solid var(--po-gold);
  pointer-events: none;
  z-index: 0;
}
.about-img .year-overlay {
  position: absolute; bottom: 1.5rem; right: 2rem;
  font-family: var(--po-font-display);
  font-size: 5.5rem;
  font-weight: 800;
  color: rgba(46,37,24,.08);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}
.about-img .year-badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--po-black);
  color: var(--po-gold);
  padding: 1rem 1.4rem;
  font-family: var(--po-font-display);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-text {
  background: var(--po-cream);
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
@media (max-width: 992px) { .about-text { padding: 3.5rem 2rem; } }

.about-inline-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--po-border);
}
.about-inline-stats .ais {
  display: flex; flex-direction: column;
  min-width: 0;
}
.about-inline-stats .ais strong {
  font-family: var(--po-font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  color: var(--po-text);
  line-height: 1;
  margin-bottom: .35rem;
}
.about-inline-stats .ais span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--po-muted);
  font-weight: 600;
}

/* ----------  Stats Strip (Floating Cards on Dark) ---------- */
.stats-strip {
  background: var(--po-text);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(192,154,82,.10) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-item {
  text-align: left;
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .4s var(--ease-out), background .4s, border-color .4s;
  position: relative;
  min-width: 0;
  overflow: hidden;
}
@media (max-width: 576px) {
  .stat-item { padding: 1.5rem 1rem; }
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--po-gold);
  transition: width .4s var(--ease-out);
}
.stat-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.06);
  border-color: rgba(192,154,82,.30);
}
.stat-item:hover::before { width: 100%; }

.stat-num {
  font-family: var(--po-font-display);
  font-size: clamp(1.85rem, 7vw, 3.6rem);
  font-weight: 800;
  color: var(--po-gold);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}
.stat-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.55);
  margin-top: .8rem;
  display: block;
}

/* ----------  Galerie  ---------- */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 1rem;
}
@media (max-width: 992px) { .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; } }
@media (max-width: 576px) { .gallery-masonry { grid-template-columns: 1fr; } }

.gm-item {
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.gm-item .ph {
  height: 100%; min-height: 200px;
  transition: transform .8s var(--ease-out);
}
.gm-item:first-child { grid-column: span 2; grid-row: span 2; }
.gm-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.gm-item:hover .ph { transform: scale(1.06); }

.gm-item .gm-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,8,.85) 0%, rgba(12,10,8,.4) 40%, transparent 70%);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.75rem;
}
.gm-item:hover .gm-overlay { opacity: 1; }
.gm-caption {
  color: #fff;
  font-family: var(--po-font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transform: translateY(10px);
  transition: transform .4s var(--ease-out) .05s;
}
.gm-item:hover .gm-caption { transform: translateY(0); }
.gm-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--po-gold);
  margin-bottom: .35rem;
}

/* ----------  Process (Floating numbered cards) ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
@media (max-width: 768px) { .process-steps { grid-template-columns: 1fr; gap: 1rem; } }

.ps-item {
  background: var(--po-white);
  padding: 2.25rem 1.75rem 2rem;
  position: relative;
  border: 1px solid var(--po-border);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.ps-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.ps-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem;
  background: var(--po-text);
  color: var(--po-gold);
  font-family: var(--po-font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all .4s var(--ease-out);
  box-shadow: var(--shadow-md);
}
.ps-item::before {
  content: '';
  position: absolute;
  top: 2.5rem; right: -1.5rem;
  width: 1.5rem; height: 1px;
  background: var(--po-border);
  z-index: 0;
}
.ps-item:last-child::before { display: none; }
@media (max-width: 768px) { .ps-item::before { display: none; } }

.ps-item:hover .ps-num {
  background: var(--po-gold);
  color: var(--po-black);
  transform: rotate(-5deg) scale(1.05);
  box-shadow: var(--shadow-gold);
}

.ps-title {
  font-family: var(--po-font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--po-text);
  margin-bottom: .6rem;
}
.ps-text { font-size: .875rem; color: var(--po-muted); line-height: 1.65; }

/* ----------  CTA  ---------- */
.cta-block {
  background: var(--po-text);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: 'PARKETT';
  position: absolute;
  right: -3rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--po-font-display);
  font-weight: 800;
  font-size: 16rem;
  line-height: 1;
  color: rgba(255,255,255,.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  animation: po-glow 8s ease-in-out infinite;
}
.cta-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 25% 50%, rgba(192,154,82,.10) 0%, transparent 60%);
  pointer-events: none;
}
.cta-block .container { position: relative; z-index: 2; }

/* CTA Floating Card Variant */
.cta-card {
  background: var(--po-white);
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--po-gold);
  position: relative;
}
@media (max-width: 768px) { .cta-card { padding: 2.5rem 1.75rem; } }

/* ----------  Partner Band (Marquee)  ---------- */
.partner-band {
  background: var(--po-light);
  padding: 2.75rem 0;
  border-top: 1px solid var(--po-border);
  border-bottom: 1px solid var(--po-border);
  overflow: hidden;
  position: relative;
}
.partner-band::before,
.partner-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partner-band::before { left: 0;  background: linear-gradient(to right, var(--po-light), transparent); }
.partner-band::after  { right: 0; background: linear-gradient(to left,  var(--po-light), transparent); }

.partner-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: po-marquee 35s linear infinite;
}
.partner-band:hover .partner-track { animation-play-state: paused; }

.partner-item {
  font-family: var(--po-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--po-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s, transform .25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.partner-item:hover { color: var(--po-text); transform: translateY(-2px); }
.partner-separator {
  width: 5px; height: 5px;
  background: var(--po-border);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ----------  Page Header  ---------- */
.page-header {
  background: var(--po-black);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-header { padding: 5rem 0 3.5rem; }
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(192,154,82,.10) 0%, transparent 65%);
  animation: po-glow 10s ease-in-out infinite;
}
.page-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(192,154,82,.5), transparent);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
  font-family: var(--po-font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 6vw, 5rem);
  color: var(--po-white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  word-break: break-word;
}
.page-header .ph-decor {
  position: absolute;
  font-family: var(--po-font-display);
  font-weight: 800;
  font-size: clamp(10rem, 22vw, 20rem);
  line-height: 1;
  color: rgba(255,255,255,.025);
  letter-spacing: -0.05em;
  right: -1.5rem; bottom: -3rem;
  pointer-events: none;
  z-index: 1;
}
.page-header .ph-orb {
  position: absolute;
  width: 280px; height: 280px;
  background: rgba(192,154,82,.16);
  border-radius: 50%;
  filter: blur(50px);
  top: -40px; right: 10%;
  animation: po-float 9s ease-in-out infinite;
  pointer-events: none;
}

.breadcrumb-modern {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 1.5rem;
  font-size: .8rem; color: rgba(255,255,255,.4);
  list-style: none; padding: 0;
}
.breadcrumb-modern a { color: rgba(255,255,255,.45); transition: color .2s; }
.breadcrumb-modern a:hover { color: var(--po-gold); }
.breadcrumb-modern .active { color: var(--po-gold); }
.breadcrumb-modern .sep { opacity: .3; }

/* ----------  Footer  ---------- */
.site-footer {
  background: var(--po-black);
  color: rgba(255,255,255,.5);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(192,154,82,.4), transparent);
}
.site-footer::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(192,154,82,.06);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px; right: -100px;
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand {
  font-family: var(--po-font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--po-white);
  display: flex; align-items: center; gap: .65rem;
  margin-bottom: 1rem;
}
.footer-brand .fb-icon {
  width: 34px; height: 34px;
  background: var(--po-gold);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(192,154,82,.30);
}
.footer-brand .fb-icon svg { width: 18px; height: 18px; color: var(--po-black); }

.footer-tagline { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.4); }

.footer-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  transition: all .25s var(--ease-out);
}
.footer-social a:hover {
  border-color: var(--po-gold);
  color: var(--po-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(192,154,82,.25);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h6 {
  font-family: var(--po-font-display);
  font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--po-white);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col a {
  color: rgba(255,255,255,.45);
  font-size: .875rem;
  transition: color .2s, padding-left .2s var(--ease-out);
  display: inline-block;
}
.footer-col a:hover { color: var(--po-gold); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: .7rem;
  margin-bottom: .8rem;
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--po-gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span,
.footer-contact-item a { font-size: .875rem; color: rgba(255,255,255,.45); }
.footer-contact-item a:hover { color: var(--po-gold); }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  font-size: .8rem;
  color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom a:hover { color: var(--po-gold); }

/* ----------  Formular (Floating Card)  ---------- */
.form-modern {
  background: var(--po-white);
  padding: 3rem 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--po-gold);
  position: relative;
}
@media (max-width: 768px) { .form-modern { padding: 2rem 1.5rem; } }

.form-modern .form-label {
  display: block;
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--po-text); margin-bottom: .55rem;
}
.form-modern .form-control,
.form-modern .form-select {
  display: block; width: 100%;
  padding: .9rem 1rem;
  border: 1.5px solid var(--po-border);
  background: var(--po-white);
  color: var(--po-text);
  font-family: var(--po-font-body);
  font-size: .9rem;
  border-radius: 0;
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
  -webkit-appearance: none;
}
.form-modern .form-control:focus,
.form-modern .form-select:focus {
  outline: none;
  border-color: var(--po-text);
  box-shadow: 0 6px 16px rgba(24,20,16,.08);
}
.form-modern .form-check-input {
  width: 18px; height: 18px;
  border-radius: 0;
  border: 1.5px solid var(--po-border);
  accent-color: var(--po-text);
  cursor: pointer; flex-shrink: 0;
}
.form-modern .form-check {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .875rem; color: var(--po-muted);
}
.form-modern .form-check a { text-decoration: underline; color: var(--po-text); }
.form-modern .invalid-feedback { font-size: .8rem; color: #b83232; margin-top: .35rem; }
.form-modern .form-control.is-invalid,
.form-modern .form-select.is-invalid { border-color: #b83232; }

/* Honeypot – absolut weg vom Bildschirm, aber im DOM */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Captcha-Frage neben Label */
.captcha-q {
  display: inline-block;
  margin-left: .5rem;
  padding: .15rem .55rem;
  background: var(--po-cream);
  border: 1px solid var(--po-border);
  font-family: var(--po-font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 0;
  color: var(--po-text);
  text-transform: none;
}

.captcha-reload {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent;
  border: 1.5px solid var(--po-border);
  color: var(--po-muted);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .65rem 1rem;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .2s var(--ease-out);
}
.captcha-reload:hover {
  border-color: var(--po-text);
  color: var(--po-text);
  transform: translateY(-1px);
}
.captcha-reload svg { transition: transform .5s var(--ease-out); }
.captcha-reload:hover svg { transform: rotate(180deg); }

/* Form-Status-Banner (Erfolg / Fehler) */
.form-status {
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--po-border);
  background: var(--po-light);
  color: var(--po-text);
  font-size: .92rem;
  line-height: 1.55;
  box-shadow: var(--shadow-sm);
}
.form-status strong { font-family: var(--po-font-display); font-weight: 700; }
.form-status-ok {
  border-left-color: #4a7c1c;
  background: #f1f7e8;
  color: #2d5a0a;
}
.form-status-error {
  border-left-color: #b83232;
  background: #fbeaea;
  color: #7d1f1f;
}

/* ----------  Leistungs-Detail-Section (Floating cards) ---------- */
.service-detail-section {
  padding: 6.5rem 0;
  position: relative;
}
.service-detail-section:nth-child(odd)  { background: var(--po-white); }
.service-detail-section:nth-child(even) { background: var(--po-light); }
.service-detail-section .container { position: relative; }

.service-detail-num {
  font-family: var(--po-font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 800;
  color: rgba(192,154,82,.14);
  line-height: 1;
  position: absolute; top: -1.5rem; right: 0;
  pointer-events: none;
  z-index: 0;
}

.service-detail-img {
  position: relative;
  padding: 1.5rem;
}
.service-detail-img .ph {
  box-shadow: var(--shadow-lg);
  min-height: 420px;
  position: relative;
  z-index: 1;
}
.service-detail-img::before {
  content: '';
  position: absolute;
  inset: 0 1.5rem 1.5rem 0;
  background: linear-gradient(135deg, rgba(192,154,82,.18) 0%, rgba(192,154,82,.04) 100%);
  z-index: 0;
}
.service-detail-img::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 65%; height: 65%;
  border: 2px solid var(--po-gold);
  z-index: 2;
  pointer-events: none;
}

.bullet-list { list-style: none; padding: 0; margin: 0; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--po-border);
  font-size: .95rem; color: var(--po-muted);
  transition: padding-left .3s var(--ease-out), color .3s;
}
.bullet-list li:hover { padding-left: .5rem; color: var(--po-text); }
.bullet-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--po-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .65rem;
  transition: transform .3s var(--ease-out);
}
.bullet-list li:hover::before { transform: scale(1.5); }

/* ----------  Testimonials (Floating cards) ---------- */
.testimonial-card {
  background: var(--po-white);
  border: 1px solid var(--po-border);
  padding: 2.75rem 2rem 2.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 1rem; left: 1.75rem;
  font-family: var(--po-font-display);
  font-size: 5.5rem; font-weight: 800;
  color: var(--po-gold); opacity: .35;
  line-height: 1; pointer-events: none;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--po-gold);
  transition: width .5s var(--ease-out);
}
.testimonial-card:hover::after { width: 100%; }
.testimonial-stars { color: var(--po-gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; position: relative; z-index: 1; }
.testimonial-text { font-size: .95rem; font-style: italic; color: var(--po-muted); line-height: 1.75; position: relative; z-index: 1; }
.testimonial-author {
  margin-top: 1.5rem; font-weight: 700; font-size: .9rem; color: var(--po-text);
  padding-top: 1rem; border-top: 1px solid var(--po-border);
}

/* ----------  Kontakt-Karten  ---------- */
.contact-info-card {
  padding: 2rem 1.75rem;
  background: var(--po-white);
  border: 1px solid var(--po-border);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--po-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease-out);
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192,154,82,.4);
}
.contact-info-card:hover::before { transform: scaleY(1); }

.contact-info-card .cic-label {
  font-size: .7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: var(--po-gold);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: .55rem;
}
.contact-info-card .cic-label svg {
  width: 16px; height: 16px;
  transition: transform .35s var(--ease-out);
}
.contact-info-card:hover .cic-label svg { transform: scale(1.15) rotate(-6deg); }

.contact-info-card .cic-value {
  font-family: var(--po-font-display); font-weight: 600;
  color: var(--po-text); font-size: 1rem; line-height: 1.55;
}
.contact-info-card a { color: var(--po-text); transition: color .2s; }
.contact-info-card a:hover { color: var(--po-gold); }

/* ----------  Utilities  ---------- */
.text-gold   { color: var(--po-gold) !important; }
.text-muted  { color: var(--po-muted) !important; }
.text-white  { color: var(--po-white) !important; }
.bg-dark     { background: var(--po-dark) !important; }
.bg-black    { background: var(--po-black) !important; }
.bg-cream    { background: var(--po-cream) !important; }
.border-gold { border-color: var(--po-gold) !important; }
.shadow-sm-x { box-shadow: var(--shadow-sm) !important; }
.shadow-md-x { box-shadow: var(--shadow-md) !important; }
.shadow-lg-x { box-shadow: var(--shadow-lg) !important; }

.divider-h {
  width: 100%; height: 1px;
  background: var(--po-border);
  border: none; margin: 0;
}

.divider-gold {
  width: 48px; height: 2px;
  background: var(--po-gold);
  border: none;
  margin: 1.75rem 0;
}

/* Floating decorative accent (z.B. hinter Sections) */
.decor-square {
  position: absolute;
  border: 2px solid var(--po-gold);
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}
.decor-dots {
  position: absolute;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, var(--po-gold) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: .25;
  pointer-events: none;
  z-index: 0;
}
