/* ═══════════════════════════════════════════
   WohnTraum Weiden – Main Stylesheet
   ═══════════════════════════════════════════ */

/* ─── LOCAL FONTS: Sora ─── */
@font-face { font-display: swap; font-family: 'Sora'; font-style: normal; font-weight: 100; src: url('../fonts/sora-v17-latin-100.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Sora'; font-style: normal; font-weight: 200; src: url('../fonts/sora-v17-latin-200.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Sora'; font-style: normal; font-weight: 300; src: url('../fonts/sora-v17-latin-300.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Sora'; font-style: normal; font-weight: 400; src: url('../fonts/sora-v17-latin-regular.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Sora'; font-style: normal; font-weight: 500; src: url('../fonts/sora-v17-latin-500.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Sora'; font-style: normal; font-weight: 600; src: url('../fonts/sora-v17-latin-600.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Sora'; font-style: normal; font-weight: 700; src: url('../fonts/sora-v17-latin-700.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Sora'; font-style: normal; font-weight: 800; src: url('../fonts/sora-v17-latin-800.woff2') format('woff2'); }

:root {
  --bg: #23262D;
  --bg-light: #1b1d23;
  --bg-dark: #181a1f;
  --bg-card: #2a2d35;
  --bg-cta: #272a32;
  --text: #ffffff;
  --text-muted: #a0a3ab;
  --accent: #ffbd59;
  --accent-light: #ffd080;
  --white: #ffffff;
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  transition: background .4s, padding .4s;
}
.site-nav.scrolled {
  background: rgba(35,38,45,.95);
  backdrop-filter: blur(12px);
  padding: 14px 60px;
  border-bottom: 1px solid rgba(255,189,89,.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 100px;
  filter: brightness(1.1);
  transition: height .4s, opacity .4s, transform .4s;
}
.site-nav.scrolled .nav-logo img {
  height: 70px;
}

/* Startseite: Logo nur oben am Anfang ausblenden, beim Scrollen erscheint es */
.page-home .site-nav:not(.scrolled) .nav-logo {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .4s, transform .4s, visibility 0s linear .4s;
}
.page-home .site-nav.scrolled .nav-logo {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .4s, transform .4s;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: .02em;
}

/* Desktop nav links with dropdowns */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  color: var(--text);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color .3s;
  position: relative;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .3s;
}
.nav-links > li > a:hover { color: var(--accent); }
.nav-links > li > a:hover::after { width: 100%; }

.nav-dropdown-arrow {
  width: 8px; height: 8px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform .3s;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  background: rgba(42,45,53,.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,189,89,.1);
  border-radius: 4px;
  padding: 12px 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  list-style: none;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links > li:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown a {
  display: block;
  padding: 8px 24px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .02em;
  transition: color .2s, padding-left .2s;
}
.nav-dropdown a:hover {
  color: var(--accent);
  padding-left: 28px;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .75rem;
  letter-spacing: .08em;
}
.nav-contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 2.2s cubic-bezier(.23,1,.32,1) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(35,38,45,.2) 0%,
    rgba(35,38,45,.3) 40%,
    rgba(35,38,45,.75) 70%,
    var(--bg) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 100px;
  max-width: 900px;
}
.hero-sub {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}
.hero-title span {
  display: block;
  font-weight: 300;
  color: var(--accent-light);
  font-size: .45em;
  margin-top: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}

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

/* ─── VALUES BAR ─── */
.values {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 60px 60px; /* Reduced from 70px */
  border-top: 1px solid rgba(255,189,89,.1);
  border-bottom: 1px solid rgba(255,189,89,.1);
}
.value-item { text-align: center; }
.value-icon {
  width: 88px; height: 88px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg {
  width: 64px; height: 64px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1;
}
.value-label-sub {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.value-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
}

/* ─── SECTION COMMON ─── */
section { padding: 90px 60px; } /* Reduced from 120px per customer request */

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
}

.section-sub {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-text {
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.9;
  font-size: .92rem;
}

/* ─── PRODUCT INTEREST GRID (4 cards, 2x2) ─── */
.interest { background: var(--bg); }
.interest-header { text-align: center; margin-bottom: 50px; }

.interest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: 1400px;
  margin: 0 auto;
}
.interest-card {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}
.interest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s;
}
.interest-card:hover img {
  transform: scale(1.06);
  filter: brightness(.75);
}
.interest-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(35,38,45,.55) 0%, transparent 40%, transparent 60%, rgba(35,38,45,.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px;
}
.interest-card .card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 700;
  opacity: .4;
  line-height: 1;
  margin-bottom: 8px;
  display: none;
}
.interest-card h3 {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0;
}
.interest-card p,
.interest-card .card-link {
  font-size: .65rem;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .8;
}
.interest-card .card-link {
  transition: opacity .3s;
}
.interest-card:hover .card-link { opacity: 1; }

/* interest-overlay variant (used on subpage grids) */
.interest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35,38,45,.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.interest-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

/* ─── WIDE IMAGE / TEXT SEPARATOR (100% hard edges, no gradient) ─── */
.wide-image {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.wide-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.23,1,.32,1);
}
.wide-image:hover .wide-image-bg { transform: scale(1.04); }
.wide-image-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(35,38,45,.55);
  /* NO gradient - pure flat overlay */
}
.wide-image-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 60px;
}
.wide-image-content .section-sub { margin-bottom: 10px; }
.wide-image-content .section-title {
  margin-bottom: 0;
}

/* Text-only separator (subtly lighter bg, hard edge) */
.separator {
  background: var(--bg-cta);
  padding: 70px 60px;
  text-align: center;
}
.separator .section-sub { margin-bottom: 10px; }
.separator .section-title { margin-bottom: 0; }

/* ─── ABOUT / SPLIT (clean, padded, no gradient) ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  min-height: auto;
}
.split-image {
  position: relative;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.23,1,.32,1);
}
.split-image:hover img { transform: scale(1.04); }
/* No gradient - clean hard edges on images */
.split-image::after { display: none; }

/* Reversed layout */
.split.split-reverse { direction: rtl; }
.split.split-reverse > * { direction: ltr; }

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 70px;
}
.split-text .section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.split-text .section-text { margin-bottom: 28px; }

/* ─── SERVICES ─── */
.services { background: var(--bg-light); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.service-card {
  padding: 36px;
  border: 1px solid rgba(255,189,89,.12);
  border-radius: 2px;
  transition: border-color .3s, transform .3s;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}
.service-card h4 {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 18px;
}
.service-card p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.8;
}

/* ─── CTA SECTION ─── */
.cta-section {
  text-align: center;
  padding: 90px 60px;
  background: var(--bg-cta);
}
.cta-section .section-title {
  max-width: 700px;
  margin: 0 auto 14px;
}

/* ─── CONTACT FORM (Customer's version from image 6) ─── */
.contact-form-section {
  background: var(--bg-light);
  padding: 90px 60px;
}
.contact-form-inner {
  max-width: 900px;
  margin: 0 auto;
}
.contact-form-header {
  margin-bottom: 40px;
}
.contact-form-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: .88rem;
  border-radius: 2px;
  transition: border-color .3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(160,163,171,.5);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a0a3ab' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

/* Checkboxes group - big bordered selection buttons */
.checkbox-group-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: .88rem;
  color: var(--text-muted);
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color .3s, background .3s, color .3s;
  user-select: none;
}
.checkbox-item:hover {
  border-color: rgba(255,189,89,.3);
  color: var(--white);
}
.checkbox-item:has(input:checked),
.checkbox-item.checked {
  border-color: var(--accent);
  background: rgba(255,189,89,.08);
  color: var(--white);
}
.checkbox-item input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* Form validation states */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e74c3c;
}
.form-error-msg {
  color: #e74c3c;
  font-size: .82rem;
  margin-bottom: 12px;
  padding: 10px 16px;
  background: rgba(231,76,60,.08);
  border: 1px solid rgba(231,76,60,.25);
  border-radius: 6px;
  text-align: center;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 2px rgba(231,76,60,.15);
}
.form-group.error label { color: #e74c3c; }
.form-success {
  background: rgba(255,189,89,.1);
  border: 1px solid var(--accent);
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  color: var(--accent);
  font-weight: 500;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: all .35s;
  border-radius: 2px;
}
.btn:hover {
  background: var(--accent);
  color: var(--bg);
}
.btn-filled {
  background: var(--accent);
  color: var(--bg);
}
.btn-filled:hover { background: var(--accent-light); }
.btn-round {
  border-radius: 50px;
}
.btn-dark {
  background: var(--bg);
  color: var(--white);
  border-color: var(--bg);
}
.btn-dark:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .3s;
}
.btn:hover svg { transform: translateX(4px); }
.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,189,89,.08);
  padding: 60px 60px 36px;
}
footer .footer-brand img {
  height: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.8;
  margin-top: 16px;
}
.footer-col h4 {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .82rem;
  transition: color .3s;
}
.footer-col a:hover { color: var(--accent); }
.footer-col .contact-line {
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 2;
}
.footer-col .contact-line a { display: block; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-right: 70px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .72rem;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 24px;
  transition: color .3s;
}
.footer-bottom a:hover { color: var(--accent); }
.footer-social {
  display: flex; gap: 20px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, background .3s;
}
.footer-social a:hover {
  border-color: var(--accent);
  background: rgba(255,189,89,.1);
}
.footer-social svg {
  width: 14px; height: 14px;
  fill: var(--text-muted);
  transition: fill .3s;
}
.footer-social a:hover svg { fill: var(--accent); }

/* ─── TREE ICONS ─── */
.tree-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
  margin-bottom: 20px;
}
.tree-row img {
  width: 28px; height: 34px;
  object-fit: contain;
  opacity: .5;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s cubic-bezier(.23,1,.32,1), transform .9s cubic-bezier(.23,1,.32,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children */
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }

/* Von links einfliegen */
.reveal-left {
  opacity: 0;
  transform: translateX(-64px) translateY(16px);
  transition: opacity .9s cubic-bezier(.23,1,.32,1), transform .9s cubic-bezier(.23,1,.32,1);
}
/* Von rechts einfliegen */
.reveal-right {
  opacity: 0;
  transform: translateX(64px) translateY(16px);
  transition: opacity .9s cubic-bezier(.23,1,.32,1), transform .9s cubic-bezier(.23,1,.32,1);
}
/* Leichter Scale-Zoom (für zentrale Texte) */
.reveal-scale {
  opacity: 0;
  transform: scale(.96) translateY(20px);
  transition: opacity 1s cubic-bezier(.23,1,.32,1), transform 1s cubic-bezier(.23,1,.32,1);
}
.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}
/* Stagger für Karten-Gruppen (links/rechts alternierend) */
.reveal-left:nth-child(2), .reveal-right:nth-child(2) { transition-delay: .10s; }
.reveal-left:nth-child(3), .reveal-right:nth-child(3) { transition-delay: .20s; }
.reveal-left:nth-child(4), .reveal-right:nth-child(4) { transition-delay: .30s; }

/* Image reveal: von links + leichter Scale */
.split-image {
  opacity: 0;
  transform: translateX(-64px) scale(.97);
  transition: opacity 1s cubic-bezier(.23,1,.32,1), transform 1s cubic-bezier(.23,1,.32,1);
}
.split-image.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ─── SUBPAGE HERO (for inner pages) ─── */
.subpage-hero {
  position: relative;
  padding: 180px 60px 70px;
  background: var(--bg-light);
  border-bottom: 1px solid rgba(255,189,89,.08);
  overflow: hidden;
}
.subpage-hero--image {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.subpage-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.subpage-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(35,38,45,.6) 0%,
    rgba(35,38,45,.5) 30%,
    rgba(35,38,45,.7) 60%,
    rgba(27,29,35,1) 100%
  );
}
.subpage-hero .section-sub { margin-bottom: 10px; position: relative; z-index: 2; }
.subpage-hero .section-title { margin-bottom: 12px; position: relative; z-index: 2; }
.subpage-hero .section-text { position: relative; z-index: 2; }
.subpage-hero .breadcrumb {
  position: relative;
  z-index: 2;
  font-size: .72rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.subpage-hero .breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.subpage-hero .breadcrumb a:hover { color: var(--accent); }
.subpage-hero .breadcrumb span { color: var(--accent); margin: 0 8px; }

/* ─── SUBPAGE CONTENT ─── */
.subpage-content {
  padding: 80px 60px;
  max-width: 960px;
  margin: 0 auto;
}
.subpage-content p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: .92rem;
  margin-bottom: 20px;
}
.subpage-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 16px;
}
.subpage-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 30px 0 12px;
}
.subpage-content ul, .subpage-content ol {
  color: var(--text-muted);
  margin: 0 0 20px 24px;
  line-height: 1.9;
  font-size: .92rem;
}
.subpage-content a {
  color: var(--accent);
  text-decoration: none;
  transition: color .2s;
}
.subpage-content a:hover { color: var(--accent-light); }
.subpage-content img {
  max-width: 100%;
  border-radius: 2px;
  margin: 20px 0;
}
.subpage-content .highlight-box {
  background: rgba(255,189,89,.06);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  margin: 28px 0;
  border-radius: 0 2px 2px 0;
}
.subpage-content .highlight-box p {
  margin-bottom: 0;
  color: var(--text);
}

/* ─── PRODUCT CATEGORY PAGE ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 4px;
  margin: 40px 0;
}
.product-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s, filter .5s;
}
.product-card:hover img {
  transform: scale(1.05);
  filter: brightness(.75);
}
.product-card .product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35,38,45,.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 4px;
}
.product-card p {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── TEAM GRID ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  margin: 40px 0;
}
.team-member {
  text-align: center;
}
.team-member-img {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid rgba(255,189,89,.15);
}
.team-member h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.team-member p {
  font-size: .8rem;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── FAQ ACCORDION ─── */
.faq-list { margin: 40px 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: color .2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 20px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.8;
}

/* ─── GALLERY GRID ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
  margin: 40px 0;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(8px);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity .25s;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border: none;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border: none;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.18); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  letter-spacing: .1em;
}

/* ─── GOOGLE REVIEWS ─── */
.reviews-section {
  padding: 80px 60px;
  background: var(--bg-dark);
}
.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}
.reviews-stars {
  display: inline-flex;
  gap: 6px;
  margin: 12px 0;
}
.reviews-stars svg {
  width: 28px; height: 28px;
  fill: #fbbc04;
}
.reviews-rating {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
}
.reviews-count {
  color: var(--text-muted);
  font-size: .85rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 28px;
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name {
  font-weight: 600;
  color: var(--white);
  font-size: .9rem;
}
.review-date {
  color: var(--text-muted);
  font-size: .75rem;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.review-stars svg {
  width: 16px; height: 16px;
  fill: #fbbc04;
}
.review-text {
  color: var(--text-muted);
  font-size: .85rem;
  line-height: 1.7;
}
.review-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: .75rem;
  color: var(--text-muted);
}
.review-google svg { width: 16px; height: 16px; }

/* ─── 3-Column Reviews Grid (Referenzen page) ─── */
.reviews-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ═══ 3D IMAGE CAROUSEL ═══ */
.carousel-3d {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  user-select: none;
}
.carousel-3d-track {
  position: relative;
  height: 480px;
  perspective: 1200px;
  overflow: visible;
  cursor: grab;
}
.carousel-3d-track:active { cursor: grabbing; }
.carousel-3d-slide {
  position: absolute;
  top: 50%; left: 50%;
  width: 55%;
  max-width: 680px;
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all .65s cubic-bezier(.23,1,.32,1);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  transform: translate(-50%, -50%) scale(.65) translateX(0);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.carousel-3d-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .65s;
}
/* Center (active) */
.carousel-3d-slide.c3d-center {
  transform: translate(-50%, -50%) scale(1) translateZ(0);
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
/* Left */
.carousel-3d-slide.c3d-left {
  transform: translate(-50%, -50%) scale(.72) translateX(-82%) rotateY(8deg);
  opacity: .7;
  z-index: 5;
  pointer-events: auto;
}
.carousel-3d-slide.c3d-left img { filter: brightness(.6); }
/* Right */
.carousel-3d-slide.c3d-right {
  transform: translate(-50%, -50%) scale(.72) translateX(82%) rotateY(-8deg);
  opacity: .7;
  z-index: 5;
  pointer-events: auto;
}
.carousel-3d-slide.c3d-right img { filter: brightness(.6); }
/* Far left / far right (barely visible) */
.carousel-3d-slide.c3d-far-left {
  transform: translate(-50%, -50%) scale(.5) translateX(-150%) rotateY(15deg);
  opacity: .2;
  z-index: 2;
}
.carousel-3d-slide.c3d-far-right {
  transform: translate(-50%, -50%) scale(.5) translateX(150%) rotateY(-15deg);
  opacity: .2;
  z-index: 2;
}

.carousel-3d-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px; height: 52px;
  border: 1px solid rgba(255,189,89,.25);
  border-radius: 50%;
  background: rgba(35,38,45,.8);
  backdrop-filter: blur(8px);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s, transform .3s;
}
.carousel-3d-nav:hover {
  background: rgba(255,189,89,.15);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}
.carousel-3d-nav svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.carousel-3d-prev { left: 12px; }
.carousel-3d-next { right: 12px; }

.carousel-3d-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-3d-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.carousel-3d-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ═══ SINGLE REVIEW SLIDER ═══ */
.review-single-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
  isolation: isolate;
}
.review-single-track {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  cursor: grab;
  z-index: 1;
}
.review-single-track:active { cursor: grabbing; }
.review-single-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .5s cubic-bezier(.23,1,.32,1), transform .5s cubic-bezier(.23,1,.32,1);
  pointer-events: none;
}
.review-single-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.review-single-card.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}
.review-single-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,189,89,.2);
  border-radius: 50%;
  background: rgba(35,38,45,.85);
  backdrop-filter: blur(8px);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s;
}
.review-single-nav:hover {
  background: rgba(255,189,89,.12);
  border-color: var(--accent);
}
.review-single-nav svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.review-single-prev { left: 0; }
.review-single-next { right: 0; }
.review-single-counter {
  text-align: center;
  margin-top: 24px;
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .1em;
}

/* ─── MESSE TIMELINE CARDS ─── */
.messe-timeline {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}
.messe-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(255,189,89,.1));
}
.messe-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  margin-left: 64px;
  transition: border-color .3s, transform .3s;
}
.messe-card:hover {
  border-color: rgba(255,189,89,.2);
  transform: translateY(-4px);
}
.messe-card-badge {
  position: absolute;
  left: -52px;
  top: 32px;
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent);
  border-radius: 8px;
  padding: 8px 4px;
  z-index: 2;
}
.messe-badge-month {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.2;
}
.messe-badge-year {
  font-family: var(--font-display);
  font-size: .6rem;
  font-weight: 600;
  color: var(--bg);
  opacity: .7;
  line-height: 1.2;
}
.messe-card-image {
  overflow: hidden;
}
.messe-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.23,1,.32,1);
}
.messe-card:hover .messe-card-image img {
  transform: scale(1.04);
}
.messe-card-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.messe-card-date {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.messe-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.messe-card-location {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.messe-card-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.messe-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.messe-card-tags span {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,189,89,.08);
  border: 1px solid rgba(255,189,89,.15);
  border-radius: 50px;
  padding: 5px 14px;
}

/* ─── CERTIFICATION GRID ─── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.cert-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 36px 28px 28px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.cert-card:hover {
  border-color: rgba(255,189,89,.2);
  transform: translateY(-4px);
}
.cert-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.92);
  border-radius: 12px;
  padding: 14px;
  overflow: hidden;
}
.cert-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cert-name {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cert-desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── REVIEWS SLIDER (for Kundenstimmen page) ─── */
.reviews-slider-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 16px;
}
.reviews-slider::-webkit-scrollbar { display: none; }
.reviews-slider .review-card {
  min-width: 340px;
  max-width: 380px;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: none;
  background: rgba(255,189,89,.15);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
  z-index: 5;
}
.slider-nav:hover { background: rgba(255,189,89,.3); }
.slider-prev { left: -22px; }
.slider-next { right: -22px; }

/* ─── DOWNLOAD LIST ─── */
.download-list { margin: 40px 0; }
.download-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.download-item svg {
  width: 24px; height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.download-item .dl-info { flex: 1; }
.download-item .dl-info h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--white);
}
.download-item .dl-info p {
  font-size: .75rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── LEGAL PAGE ─── */
.legal-content {
  padding: 80px 60px;
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 36px 0 12px;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin: 24px 0 8px;
}
.legal-content p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.8;
  margin: 0 0 16px 20px;
}
.legal-content a {
  color: var(--accent);
  text-decoration: none;
}

/* ─── KONTAKT PAGE ─── */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}
.contact-info-card {
  padding: 32px;
  border: 1px solid rgba(255,189,89,.12);
  border-radius: 2px;
  text-align: center;
}
.contact-info-card svg {
  width: 36px; height: 36px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.2;
  margin-bottom: 16px;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info-card p {
  color: var(--text-muted);
  font-size: .88rem;
  margin: 0;
}
.contact-info-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

/* ─── REFERENZEN / KUNDENSTIMMEN ─── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 40px 0;
}
.testimonial-card {
  padding: 32px;
  border: 1px solid rgba(255,189,89,.08);
  border-radius: 2px;
  background: var(--bg-card);
}
.testimonial-card .quote {
  font-size: 2rem;
  color: var(--accent);
  opacity: .4;
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-card p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card .author {
  font-size: .78rem;
  color: var(--white);
  font-weight: 500;
  font-style: normal;
}

/* ─── EMBED / IFRAME ─── */
.embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 40px 0;
  border-radius: 2px;
  overflow: hidden;
}
.embed-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ─── 404 ─── */
.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 80px;
}
.page-404 h1 {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--accent);
  opacity: .3;
  line-height: 1;
}

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(35,38,45,.98);
  backdrop-filter: blur(20px);
  padding: 100px 32px 32px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-group { margin-bottom: 24px; }
.mobile-nav-group-title {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}
.mobile-nav-group a {
  display: block;
  padding: 8px 0;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s;
}
.mobile-nav-group a:hover { color: var(--accent); }

/* ─── FLOATING CONTACT WIDGET ─── */
.contact-fab {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 100;
}
.contact-fab-btn {
  width: 52px; height: 52px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  transition: background .3s, transform .3s;
  position: relative;
  z-index: 2;
}
.contact-fab-btn:hover { background: var(--accent-light); transform: scale(1.05); }
.contact-fab-btn svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity .25s, transform .25s;
}
.contact-fab-btn .cfab-close { position: absolute; opacity: 0; transform: rotate(-90deg) scale(.6); }
.contact-fab.open .contact-fab-btn .cfab-open { opacity: 0; transform: rotate(90deg) scale(.6); }
.contact-fab.open .contact-fab-btn .cfab-close { opacity: 1; transform: rotate(0) scale(1); }

.contact-fab-panel {
  position: absolute;
  bottom: 64px;
  left: 0;
  width: 300px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.95);
  transform-origin: bottom left;
  transition: opacity .3s, visibility .3s, transform .3s cubic-bezier(.23,1,.32,1);
  overflow: hidden;
}
.contact-fab.open .contact-fab-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.contact-fab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
}
.contact-fab-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color .2s;
}
.contact-fab-close:hover { color: var(--white); }

.contact-fab-links { padding: 8px 0; }
.contact-fab-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--white);
  transition: background .2s;
}
.contact-fab-item:hover { background: rgba(255,255,255,.04); }
.contact-fab-item strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.3;
}
.contact-fab-item small {
  display: block;
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.contact-fab-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-fab-icon svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cfab-phone { background: rgba(59,183,126,.15); color: #3bb77e; }
.cfab-whatsapp { background: rgba(37,211,102,.15); color: #25d366; }
.cfab-whatsapp svg { fill: #25d366; stroke: none; }
.cfab-email { background: rgba(255,189,89,.12); color: var(--accent); }
.cfab-form { background: rgba(99,145,255,.15); color: #6391ff; }
.cfab-info { background: rgba(187,134,252,.15); color: #bb86fc; }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 48px; height: 48px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s, background .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}
.back-to-top svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* ─── FORM TABS (for multiple form types) ─── */
.form-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.form-tab {
  padding: 12px 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  cursor: pointer;
  position: relative;
  transition: color .3s;
}
.form-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .3s;
}
.form-tab.active { color: var(--accent); }
.form-tab.active::after { transform: scaleX(1); }
.form-tab:hover { color: var(--white); }
.form-panel { display: none; }
.form-panel.active { display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .site-nav { padding: 12px 24px; }
  .site-nav.scrolled { padding: 10px 24px; }
  /* Kleineres Logo, damit die fixierte Navi nicht zu hoch wird und Header überdeckt */
  .nav-logo img { height: 60px; }
  .site-nav.scrolled .nav-logo img { height: 48px; }
  /* Auf Mobile das Logo IMMER zeigen – auch auf der Startseite vor dem Scrollen */
  .page-home .site-nav:not(.scrolled) .nav-logo {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: opacity .4s, transform .4s;
  }
  /* Leichter Verlauf hinter der transparenten Navi, damit das Logo über dem Hero lesbar bleibt */
  .page-home .site-nav:not(.scrolled)::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(27,29,35,.55), rgba(27,29,35,0));
  }
  .interest-grid { grid-template-columns: 1fr 1fr; }
  .interest-card { aspect-ratio: 3/4; }
  .reviews-grid-3col { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .carousel-3d { padding: 0 60px; }
  .carousel-3d-track { height: 400px; }
}

@media (max-width: 900px) {
  section { padding: 60px 24px; }
  .hero-content { padding: 0 24px 60px; }
  .values { flex-wrap: wrap; gap: 40px; padding: 40px 24px; }
  .interest-grid { grid-template-columns: 1fr 1fr; }
  .interest-card { aspect-ratio: 3/4; }
  .split { grid-template-columns: 1fr; padding: 40px 24px; gap: 0; }
  .split.split-reverse { direction: ltr; }
  .split-image img { aspect-ratio: 16/9; }
  .split-text { padding: 32px 0; }
  .services-grid { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom a { margin-left: 12px; }
  .contact-form-section { padding: 60px 24px; }
  .subpage-hero { padding: 116px 24px 44px; }
  .subpage-hero--image { min-height: 360px; }
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
  .contact-fab { bottom: 20px; left: 20px; }
  .contact-fab-btn { width: 46px; height: 46px; }
  .contact-fab-panel { width: 280px; }
  .footer-bottom { padding-right: 0; }
  .subpage-content { padding: 50px 24px; }
  .legal-content { padding: 50px 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .reviews-section { padding: 60px 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid-3col { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; gap: 20px; }
  .carousel-3d { padding: 0 20px; }
  .carousel-3d-track { height: 280px; }
  .carousel-3d-slide { width: 75%; }
  .carousel-3d-slide.c3d-left { transform: translate(-50%, -50%) scale(.6) translateX(-65%); }
  .carousel-3d-slide.c3d-right { transform: translate(-50%, -50%) scale(.6) translateX(65%); }
  .carousel-3d-nav { width: 40px; height: 40px; }
  .carousel-3d-prev { left: 4px; }
  .carousel-3d-next { right: 4px; }
  .review-single-prev { left: 4px; }
  .review-single-next { right: 4px; }
  .review-single-nav { width: 38px; height: 38px; }
  .checkbox-group { grid-template-columns: 1fr; }
  .messe-timeline::before { display: none; }
  .messe-card { grid-template-columns: 1fr; margin-left: 0; }
  .messe-card-badge { left: 20px; top: -20px; flex-direction: row; gap: 4px; padding: 6px 12px; }
  .messe-card-image { aspect-ratio: 16/9; }
  .messe-card-content { padding: 28px 24px; }
  .cta-section { padding: 60px 24px; }
  .wide-image-content { padding: 60px 24px; }
  .separator { padding: 50px 24px; }
  /* Reviews slider mobile */
  .reviews-slider { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 16px; padding-bottom: 12px; }
  .reviews-slider .review-card { min-width: 85vw; scroll-snap-align: start; flex-shrink: 0; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .interest-grid { grid-template-columns: 1fr; }
  .interest-card { aspect-ratio: 16/9; }

  /* Navi auf Smartphones: kompakt, Telefonnummer nur noch im Menü */
  .site-nav { padding: 10px 18px; }
  .site-nav.scrolled { padding: 8px 18px; }
  .nav-logo img { height: 52px; }
  .site-nav.scrolled .nav-logo img { height: 44px; }
  .nav-contact { display: none; }

  /* Header/Hero klar unterhalb der fixierten Navi, keine Überschneidung */
  .subpage-hero { padding: 100px 20px 40px; }
  .subpage-hero--image { min-height: 320px; padding-top: 100px; }
  .mobile-nav { padding: 84px 24px 32px; }

  /* ─── Besonderer Hero: gesonderte Smartphone-Behandlung ─── */
  /* Dynamische Viewport-Höhe (svh) statt 100vh: kein Abschneiden durch die Browserleiste */
  /* Mehr Höhe auf dem Smartphone, damit die Hintergrund-Animation (GIF) oben mehr Platz bekommt */
  .hero { height: 100svh; min-height: 640px; max-height: 900px; }
  /* Etwas stärkerer Verlauf unten, damit Titel & Text klar auf dem Bild stehen */
  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(35,38,45,.35) 0%,
      rgba(35,38,45,.45) 45%,
      rgba(35,38,45,.82) 78%,
      var(--bg) 100%
    );
  }
  .hero-content { padding: 0 22px 56px; max-width: 100%; }
  .hero-sub { font-size: .68rem; letter-spacing: .2em; margin-bottom: 12px; }
  .hero-title { font-size: clamp(2.8rem, 16vw, 4.5rem); margin-bottom: 16px; }
  .hero-title span { font-size: .42em; margin-top: 10px; }
  .hero-desc { font-size: .95rem; line-height: 1.7; max-width: 100%; }

  .section-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ─── SOCIAL MEDIA PAGE ─── */
.social-channels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}
.social-channel-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .3s cubic-bezier(.23,1,.32,1), border-color .3s;
  grid-column: span 2;
}
/* Row 2: Google + 360° zentriert (2 von 6 Spalten versetzt) */
.social-channel-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.social-channel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,189,89,.35);
}
.social-channel-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.social-channel-icon svg { width: 30px; height: 30px; fill: #fff; }
.social-channel-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.social-channel-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  flex: 1;
}
.social-channel-btn {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 8px;
  background: var(--border);
  color: var(--text);
  font-size: .78rem;
  transition: background .2s, color .2s;
}
.social-channel-card:hover .social-channel-btn {
  background: var(--accent);
  color: var(--bg);
}

/* ── Instagram Post Card ─────────────────────────────────── */
.ig-teaser-section {
  padding: 80px 60px;
  text-align: center;
}

/* Karte: Bild + Overlay */
.ig-post-card {
  display: block;
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s;
}
.ig-post-card:hover { transform: translateY(-6px); box-shadow: 0 32px 80px rgba(0,0,0,.55); }

/* Hintergrundbild */
.ig-post-img {
  position: absolute;
  inset: 0;
}
.ig-post-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.23,1,.32,1);
}
.ig-post-card:hover .ig-post-img img { transform: scale(1.04); }

/* Dunkles Gradient-Overlay von unten */
.ig-post-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.90) 0%,
    rgba(0,0,0,.55) 40%,
    rgba(0,0,0,.10) 70%,
    transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px 28px;
  color: #fff;
}

/* Account-Zeile oben im Overlay */
.ig-post-account {
  position: absolute;
  top: 20px; left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 6px 12px 6px 8px;
}

/* Caption */
.ig-post-caption {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.90);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

/* Likes / Kommentare / Datum */
.ig-post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.ig-post-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: rgba(255,255,255,.70);
}
.ig-post-stat svg { fill: rgba(255,255,255,.70); flex-shrink: 0; }
.ig-post-date { margin-left: auto; }

/* CTA-Button */
.ig-post-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #1a1a1a;
  font-weight: 700;
  font-size: .82rem;
  padding: 11px 22px;
  border-radius: 100px;
  width: fit-content;
  transition: background .2s, transform .2s;
}
.ig-post-card:hover .ig-post-cta {
  background: var(--accent-light);
  transform: translateY(-1px);
}
.ig-post-cta svg { stroke: #1a1a1a; flex-shrink: 0; }

@media (max-width: 900px) {
  .social-channels-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .social-channel-card { grid-column: span 1; }
  .social-channel-card:nth-child(4) { grid-column: auto; }
  .ig-teaser-section { padding: 60px 24px; }
  .ig-post-card { max-width: 100%; aspect-ratio: 3/4; }
}
@media (max-width: 600px) {
  .social-channels-grid { grid-template-columns: 1fr; }
  .ig-post-card { aspect-ratio: 4/5; border-radius: 14px; }
  .ig-post-overlay { padding: 24px 20px 22px; }
  .ig-post-caption { font-size: .83rem; -webkit-line-clamp: 3; }
}

/* ─── SPECIALS / ANGEBOTE CARDS ─── */
.specials-section {
  padding: 80px 60px;
}
.specials-intro {
  text-align: center;
  margin-bottom: 56px;
}
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 28px;
  max-width: 1260px;
  margin: 0 auto;
}
.special-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,189,89,.12);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.special-card:hover {
  border-color: rgba(255,189,89,.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.special-card-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.special-card-label {
  display: inline-block;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.special-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 10px;
}
.special-card-subtitle {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.special-card-details {
  padding: 20px 28px;
  flex: 1;
}
.special-detail-row {
  display: flex;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .8rem;
  line-height: 1.4;
}
.special-detail-row:last-child {
  border-bottom: none;
}
.special-detail-label {
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 130px;
}
.special-detail-value {
  color: var(--white);
  font-weight: 500;
}
.special-card-footer {
  padding: 20px 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.05);
  flex-wrap: wrap;
}
.special-price-block {}
.special-price-main {
  display: flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}
.special-price-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent);
}
.special-price-unit {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 400;
}
.special-price-note {
  font-size: .7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.special-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.special-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.special-card:hover .special-card-image img {
  transform: scale(1.04);
}

/* Inspirations-Galerie unter den Specials */
.specials-gallery {
  padding: 40px 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.specials-gallery-intro {
  text-align: center;
  margin-bottom: 40px;
}
.specials-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.specials-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
}
.specials-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.specials-gallery-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 1000px) {
  .specials-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
  .specials-gallery { padding: 30px 24px 60px; }
  .specials-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .specials-gallery-item:nth-child(3) { grid-column: span 2; aspect-ratio: 16 / 9; }
}
@media (max-width: 700px) {
  .specials-section { padding: 60px 24px; }
  .specials-grid { grid-template-columns: 1fr; gap: 20px; }
  .special-card-header,
  .special-card-details,
  .special-card-footer { padding-left: 20px; padding-right: 20px; }
  .special-detail-label { min-width: 110px; }
  .specials-gallery-grid { grid-template-columns: 1fr; }
  .specials-gallery-item,
  .specials-gallery-item:nth-child(3) { aspect-ratio: 4 / 3; }
}
