/* =========================================================
   HOTBOX Karlsruhe – Premium Wellness Website
   style.css – Main Stylesheet
   ========================================================= */

/* ---------------------------------------------------------
   1. CSS Variables & Reset
   --------------------------------------------------------- */
:root {
  --color-bg:           #FAF8F4;
  --color-bg-alt:       #F5F0E8;
  --color-card:         #FFFFFF;
  --color-card-alt:     #FBF9F6;
  --color-text:         #1A1714;
  --color-muted:        #6B6158;
  --color-light:        #A09A92;
  --color-bronze:       #B8773A;
  --color-bronze-light: #D4944A;
  --color-bronze-dark:  #8C5A20;
  --color-dark:         #1C1917;
  --color-dark-mid:     #2C2825;
  --color-border:       #E8E2D8;

  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --shadow-soft:  0 2px 16px rgba(28,25,23,0.07);
  --shadow-md:    0 4px 32px rgba(28,25,23,0.11);
  --shadow-lg:    0 8px 48px rgba(28,25,23,0.14);
  --shadow-bronze:0 4px 24px rgba(184,119,58,0.25);

  --transition:        all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:   all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  --font-serif:  'Playfair Display', 'Georgia', serif;
  --font-sans:   'Inter', 'Segoe UI', system-ui, sans-serif;

  --header-h:    80px;
  --container:   1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ---------------------------------------------------------
   2. Typography
   --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

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

p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.text-bronze { color: var(--color-bronze); }
.text-muted  { color: var(--color-muted); }
.text-center { text-align: center; }
.text-white  { color: #fff; }

/* ---------------------------------------------------------
   3. Layout Utilities
   --------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--sm {
  padding: 64px 0;
}

.section--dark {
  background: var(--color-dark);
  color: #fff;
}

.section--alt {
  background: var(--color-bg-alt);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

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

.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ---------------------------------------------------------
   4. Section Header
   --------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-bronze);
  margin-bottom: 16px;
}

.section-header .label::before,
.section-header .label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-bronze);
  opacity: 0.6;
}

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

.section-header p {
  font-size: 1.05rem;
}

/* ---------------------------------------------------------
   5. Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--color-bronze);
  color: #fff;
  box-shadow: 0 4px 16px rgba(184,119,58,0.30);
}

.btn-primary:hover {
  background: var(--color-bronze-light);
  box-shadow: var(--shadow-bronze);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-bronze);
  color: var(--color-bronze);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-dark);
  color: #fff;
}

.btn-dark:hover {
  background: var(--color-dark-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: #fff;
  color: var(--color-bronze);
  font-weight: 700;
}

.btn-white:hover {
  background: #F5EEE3;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* ---------------------------------------------------------
   6. Header & Navigation
   --------------------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
}

#header.transparent {
  background: transparent;
}

#header.scrolled {
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(232, 226, 216, 0.6);
  box-shadow: 0 2px 24px rgba(28,25,23,0.06);
}

#header.dark-header {
  background: rgba(28,25,23,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#header.dark-header.scrolled {
  background: rgba(28,25,23,0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--color-bronze);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}

.logo-mark span {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.logo-img {
  height: 52px;
  width: 52px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-text .brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.logo-text .sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  line-height: 1;
}

#header.transparent .logo-text .brand,
#header.transparent .logo-text .sub,
#header.dark-header .logo-text .brand {
  color: #fff;
}

#header.transparent .logo-text .sub,
#header.dark-header .logo-text .sub {
  color: rgba(255,255,255,0.65);
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.25s;
  border-radius: var(--radius-sm);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-bronze);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-bronze);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

#header.transparent .nav-link,
#header.dark-header .nav-link {
  color: rgba(255,255,255,0.85);
}

#header.transparent .nav-link:hover,
#header.dark-header .nav-link:hover,
#header.transparent .nav-link.active,
#header.dark-header .nav-link.active {
  color: #fff;
}

.header-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

#header.transparent .hamburger span,
#header.dark-header .hamburger span {
  background: #fff;
}

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

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28,25,23,0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: var(--color-bg);
  padding: 96px 32px 48px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -8px 0 64px rgba(28,25,23,0.18);
}

.mobile-nav.open {
  pointer-events: all;
}

.mobile-nav.open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav.open .mobile-nav-panel    { transform: translateX(0); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav-links a {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links a::after {
  content: '→';
  font-size: 1rem;
  color: var(--color-bronze);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: var(--color-bronze);
  padding-left: 8px;
}

.mobile-nav-links a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-footer {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.mobile-nav-footer .btn {
  width: 100%;
  justify-content: center;
}

.mobile-nav-footer p {
  margin-top: 16px;
  font-size: 0.8rem;
  text-align: center;
}

/* ---------------------------------------------------------
   7. Hero Section
   --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    #2C241A 0%,
    #3D2E1C 25%,
    #4A3420 50%,
    #2E2016 75%,
    #1C1410 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(28,25,23,0.68) 0%,
    rgba(28,25,23,0.40) 60%,
    rgba(28,25,23,0.20) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 48px) 24px 80px;
  width: 100%;
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bronze-light);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-bronze-light);
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s 0.8s forwards;
}

/* Steam / ambient effect */
.hero-steam {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.steam-particle {
  position: absolute;
  bottom: 0;
  width: 80px;
  height: 120px;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at bottom, rgba(255,255,255,0.07) 0%, transparent 70%);
  animation: steamRise 6s ease-in-out infinite;
  opacity: 0;
}

.steam-particle:nth-child(1) { left: 15%; animation-delay: 0s; }
.steam-particle:nth-child(2) { left: 35%; animation-delay: 1.5s; width: 100px; height: 150px; }
.steam-particle:nth-child(3) { left: 55%; animation-delay: 3s; }
.steam-particle:nth-child(4) { left: 75%; animation-delay: 4.5s; width: 60px; height: 90px; }

@keyframes steamRise {
  0%   { opacity: 0; transform: translateY(0) scaleX(1); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-180px) scaleX(1.6); }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* Page Hero (interior pages) */
.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2C241A, #4A3420, #1C1410);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,25,23,0.75) 0%,
    rgba(28,25,23,0.35) 60%,
    rgba(28,25,23,0.15) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 32px) 24px 0;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  font-weight: 500;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.page-hero .breadcrumb a:hover { color: rgba(255,255,255,0.9); }

.page-hero h1 {
  color: #fff;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ---------------------------------------------------------
   8. Tile Navigation (Startseite)
   --------------------------------------------------------- */
.tiles-section {
  padding: 80px 0 96px;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.tile--wide {
  grid-column: span 2;
  aspect-ratio: 8/3.5;
}

.tile--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.tile:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.tile-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.tile:hover .tile-img img {
  transform: scale(1.07);
}

.tile-img-placeholder {
  width: 100%;
  height: 100%;
}

.tile-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(28,25,23,0.65) 0%,
    rgba(28,25,23,0.12) 55%,
    rgba(28,25,23,0.05) 100%
  );
  transition: background 0.35s;
}

.tile:hover .tile-overlay {
  background: linear-gradient(
    to top,
    rgba(28,25,23,0.72) 0%,
    rgba(28,25,23,0.18) 55%,
    rgba(28,25,23,0.05) 100%
  );
}

.tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px) saturate(1.2);
  background: rgba(250,248,244,0.14);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.tile-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(184,119,58,0.25);
  border: 1px solid rgba(184,119,58,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-icon svg {
  width: 18px;
  height: 18px;
  stroke: #D4944A;
  fill: none;
  stroke-width: 1.5;
}

.tile-text {
  flex: 1;
}

.tile-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.tile-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.tile-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.tile-arrow svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  transition: transform 0.25s;
}

.tile:hover .tile-arrow {
  background: var(--color-bronze);
  border-color: var(--color-bronze);
}

.tile:hover .tile-arrow svg {
  transform: translateX(3px);
}

/* Tile Placeholder Colors */
.tile-ph-sauna     { background: linear-gradient(135deg, #3D2E1C, #5C4026, #3A2814); }
.tile-ph-hottub    { background: linear-gradient(135deg, #1C2832, #243040, #1A2028); }
.tile-ph-2in1      { background: linear-gradient(135deg, #2A2C1E, #3A3E28, #222418); }
.tile-ph-beratung  { background: linear-gradient(135deg, #2E2418, #403226, #26180E); }
.tile-ph-lieferung { background: linear-gradient(135deg, #1A2228, #253040, #18202A); }
.tile-ph-kontakt   { background: linear-gradient(135deg, #2C2420, #40342E, #201A18); }

/* ---------------------------------------------------------
   9. Benefits Strip
   --------------------------------------------------------- */
.benefits-strip {
  background: var(--color-dark);
  padding: 48px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.benefit-item {
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.benefit-item:last-child {
  border-right: none;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-bronze-light);
  fill: none;
  stroke-width: 1.5;
}

.benefit-icon img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
}

.benefit-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.benefit-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ---------------------------------------------------------
   10. About Section (Startseite)
   --------------------------------------------------------- */
.about-section {
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3D2E1C, #5C4026);
}

.about-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  min-width: 200px;
}

.about-badge strong {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-serif);
  color: var(--color-bronze);
}

.about-badge span {
  font-size: 0.78rem;
  color: var(--color-muted);
  font-weight: 500;
}

.about-content .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-bronze);
  margin-bottom: 20px;
}

.about-content .label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-bronze);
  opacity: 0.7;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  margin: 32px 0 40px;
  display: grid;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-bronze);
  flex-shrink: 0;
  margin-top: 7px;
}

.about-feature strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* ---------------------------------------------------------
   11. Product Cards
   --------------------------------------------------------- */
.product-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.product-card-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-img-ph {
  width: 100%;
  height: 100%;
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-bronze);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.product-card-body p {
  font-size: 0.875rem;
  margin-bottom: 20px;
  flex: 1;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-muted);
  background: var(--color-bg-alt);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--color-border);
}

.meta-tag svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-muted);
  stroke-width: 2;
  fill: none;
}

.product-card-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-from {
  font-size: 0.72rem;
  color: var(--color-muted);
  display: block;
  margin-bottom: 2px;
  font-weight: 500;
}

.price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
}

/* ---------------------------------------------------------
   12. Bestseller / Featured Section
   --------------------------------------------------------- */
.featured-section {
  padding: 96px 0;
  background: var(--color-bg-alt);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.featured-gallery {
  position: relative;
}

.featured-main-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-lg);
}

.featured-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-main-img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3D2E1C, #6A4C2A, #2A1A0C);
}

.featured-tag {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--color-dark);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

.featured-tag em {
  display: block;
  font-style: normal;
  color: var(--color-bronze-light);
  font-size: 1.1rem;
  font-family: var(--font-serif);
  letter-spacing: 0;
  font-weight: 700;
  margin-top: 2px;
}

.featured-content .series-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bronze);
  border: 1px solid rgba(184,119,58,0.3);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.featured-content h2 {
  margin-bottom: 16px;
}

.featured-content p {
  margin-bottom: 32px;
  font-size: 1rem;
}

.featured-benefits {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.featured-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.featured-benefit svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-bronze);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   13. Product Detail Page
   --------------------------------------------------------- */
.product-detail {
  padding: calc(var(--header-h) + 64px) 0 96px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.gallery-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
  cursor: zoom-in;
}

.gallery-main img,
.gallery-main .gallery-main-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s, transform 0.55s;
}

.gallery-main-ph {
  background: linear-gradient(135deg, #3D2E1C, #6A4C2A, #2A1A0C);
}

.gallery-main img.fading {
  opacity: 0;
  transform: scale(0.98);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-fast);
  opacity: 0.65;
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-alt);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb-ph {
  width: 100%;
  height: 100%;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--color-bronze);
  opacity: 1;
}

/* Product Info */
.product-info {
  padding-top: 8px;
}

.product-series {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bronze);
  border: 1px solid rgba(184,119,58,0.3);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.product-info h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.product-info .description {
  font-size: 1rem;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.product-price .from {
  font-size: 0.78rem;
  color: var(--color-muted);
  font-weight: 500;
}

.product-price .amount {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}

.product-price .tax {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.product-highlights {
  margin-bottom: 28px;
  display: grid;
  gap: 10px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.highlight-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-bronze);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.product-actions {
  margin-bottom: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-actions .btn {
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--color-muted);
  font-weight: 500;
}

.trust-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-bronze);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Tech Highlights */
.tech-highlights {
  padding: 72px 0;
  background: var(--color-bg-alt);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.tech-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.tech-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(184,119,58,0.3);
}

.tech-card svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-bronze);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 12px;
}

.tech-card strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.tech-card span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

/* Options Konfigurator */
.options-section {
  padding: 72px 0;
}

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

.option-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  user-select: none;
}

.option-card:hover {
  border-color: rgba(184,119,58,0.4);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.option-card.selected {
  border-color: var(--color-bronze);
  background: rgba(184,119,58,0.04);
}

.option-card.selected::after {
  content: '';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-bronze);
  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='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.option-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.25s;
}

.option-card.selected .option-card-icon {
  background: rgba(184,119,58,0.15);
}

.option-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-muted);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.25s;
}

.option-card.selected .option-card-icon svg {
  stroke: var(--color-bronze);
}

.option-card-media {
  width: 100%;
  height: 116px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: var(--color-card-alt);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.option-card h4 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.option-card p {
  font-size: 0.78rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.option-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-bronze);
  font-family: var(--font-serif);
}

.options-summary {
  margin-top: 24px;
  background: var(--color-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.options-summary.visible {
  display: flex;
}

.options-summary-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.options-summary-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.options-summary-text strong {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  color: #fff;
}

/* Original product option layout */
.options-original {
  background: var(--color-bg-alt);
}

.option-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.option-group {
  background: #fff;
  border-top: 5px solid #A76428;
  padding: 24px 28px 30px;
  box-shadow: var(--shadow-soft);
  min-height: 220px;
}

.option-group--wide {
  grid-column: 1 / -1;
}

.option-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.option-block-heading {
  grid-column: 1 / -1;
  margin: 10px 0 -10px;
}

.option-block-heading h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.option-block-heading p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.option-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
}

.option-group-bullet {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #161616;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  font-size: 0.78rem;
  line-height: 1;
}

.option-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
}

.option-choice-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.option-choice-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-choice-grid--text {
  align-items: center;
  min-height: 72px;
}

.option-choice {
  min-width: 0;
  text-align: center;
}

.option-choice img {
  width: 92px;
  height: 92px;
  display: block;
  object-fit: contain;
  margin: 0 auto 14px;
}

.option-size-badge {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 2px solid rgba(22, 22, 22, 0.18);
  border-radius: 999px;
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  background: radial-gradient(circle, #fff 58%, rgba(184,119,58,0.08) 59%);
}

.option-choice strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

.option-choice span {
  display: block;
  color: var(--color-muted);
  font-size: 0.76rem;
}

.option-choice--text-only {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 6px;
}

.option-group-note {
  margin: 26px 4px 0;
  color: var(--color-text);
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: left;
}

.option-group-note strong {
  font-weight: 700;
}

/* Specs Section */
.specs-section {
  padding: 72px 0;
  background: var(--color-bg-alt);
}

.specs-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.specs-list {
  display: grid;
  gap: 0;
}

.spec-row {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  gap: 24px;
}

.spec-row:last-child { border-bottom: none; }

.spec-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 160px;
}

.spec-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

/* Floor Plan */
.floor-plan {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.floor-plan h4 {
  margin-bottom: 24px;
  font-size: 1rem;
}

.floor-plan-diagram {
  position: relative;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.floor-room {
  padding: 20px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floor-sauna {
  background: rgba(184,119,58,0.08);
  border-bottom: 2px solid var(--color-border);
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--color-bronze);
}

.floor-sauna span {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-muted);
  text-transform: none;
  letter-spacing: 0;
}

.floor-vorraum {
  background: rgba(28,25,23,0.02);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--color-muted);
}

.floor-vorraum span {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-light);
  text-transform: none;
  letter-spacing: 0;
}

.floor-dims {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.floor-dim {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--color-muted);
}

.floor-dim::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--color-bronze);
  opacity: 0.5;
}

/* ---------------------------------------------------------
   14. Info Page – Timeline & FAQ
   --------------------------------------------------------- */
.timeline {
  position: relative;
  padding: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-bronze), transparent);
}

.timeline-item {
  display: flex;
  gap: 32px;
  padding: 0 0 48px;
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-dark);
  border: 3px solid var(--color-bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-dot svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-bronze-light);
  fill: none;
  stroke-width: 1.5;
}

.timeline-content {
  padding-top: 12px;
}

.timeline-content h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.timeline-content p {
  font-size: 0.9rem;
}

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--color-bronze); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-muted);
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.35s;
}

.faq-item.open .faq-icon {
  background: var(--color-bronze);
  border-color: var(--color-bronze);
}

.faq-item.open .faq-icon svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ---------------------------------------------------------
   15. Process Steps
   --------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 72px;
  right: 72px;
  height: 1px;
  background: linear-gradient(to right, var(--color-bronze) 0%, var(--color-bronze) 60%, transparent 100%);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-card);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: var(--transition);
}

.step-number span {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-bronze);
}

.process-step:hover .step-number {
  border-color: var(--color-bronze);
  background: rgba(184,119,58,0.06);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.825rem;
}

/* ---------------------------------------------------------
   16. Testimonials
   --------------------------------------------------------- */
.testimonial-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-bronze);
  stroke: var(--color-bronze);
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-bronze), var(--color-bronze-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.author-info span {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* ---------------------------------------------------------
   17. CTA Banner
   --------------------------------------------------------- */
.cta-banner {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2C241A, #3D2E1C, #1C1410);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,25,23,0.72);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-content .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-bronze-light);
  margin-bottom: 20px;
}

.cta-content .label::before,
.cta-content .label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-bronze-light);
  opacity: 0.6;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------
   18. Contact Page
   --------------------------------------------------------- */
.contact-section {
  padding: 80px 0 96px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(184,119,58,0.25);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(184,119,58,0.1);
  border: 1px solid rgba(184,119,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-bronze);
  fill: none;
  stroke-width: 1.5;
}

.contact-card-body strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.contact-card-body p, .contact-card-body a {
  font-size: 0.825rem;
  color: var(--color-muted);
  line-height: 1.6;
  transition: color 0.2s;
}

.contact-card-body a:hover { color: var(--color-bronze); }

/* Contact Form */
.contact-form-wrap {
  background: var(--color-card);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form-header {
  margin-bottom: 36px;
}

.form-header h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.form-header p {
  font-size: 0.875rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group label .required {
  color: var(--color-bronze);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-bronze);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184,119,58,0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-light);
}

.form-error-msg {
  font-size: 0.72rem;
  color: #C0392B;
  margin-top: 6px;
  display: none;
}

.form-error-msg.visible { display: block; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-bronze);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
  cursor: pointer;
  line-height: 1.55;
}

.checkbox-group label a {
  color: var(--color-bronze);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.form-submit .btn {
  min-width: 200px;
}

.form-note {
  font-size: 0.72rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-note svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-muted);
  fill: none;
  stroke-width: 2;
}

/* Map Section */
.map-section {
  padding: 0 0 80px;
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, #2A2820, #353228, #201E1A);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.map-overlay {
  text-align: center;
  color: #fff;
  padding: 32px;
}

.map-pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(184,119,58,0.4);
  animation: pinBounce 2s ease-in-out infinite;
}

.map-pin svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.map-overlay h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.map-overlay p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

/* ---------------------------------------------------------
   19. Footer
   --------------------------------------------------------- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo .logo-text .brand,
.footer-brand .logo .logo-text .sub {
  color: #fff;
}

.footer-brand .logo .logo-text .sub {
  color: rgba(255,255,255,0.55);
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  max-width: 280px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.footer-contact-info {
  display: grid;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-bronze-light);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--color-bronze-light);
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.9);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.2s;
}

.social-icon:hover {
  border-color: var(--color-bronze);
  background: rgba(184,119,58,0.12);
}

.social-icon:hover svg {
  stroke: var(--color-bronze-light);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.65);
}

.footer-credit {
  color: rgba(255,255,255,0.42);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-credit:hover {
  color: var(--color-bronze-light);
}

/* ---------------------------------------------------------
   20. Legal Pages (Impressum, Datenschutz)
   --------------------------------------------------------- */
.legal-page {
  padding: calc(var(--header-h) + 64px) 0 96px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 8px;
}

.legal-lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 40px 0 14px;
}

.legal-content h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin: 24px 0 10px;
}

.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--color-bronze);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------------------------------------------------
   21. Scroll Reveal Animations
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.fade-up      { transform: translateY(32px); }
.reveal.fade-left    { transform: translateX(-32px); }
.reveal.fade-right   { transform: translateX(32px); }
.reveal.scale-in     { transform: scale(0.94); }

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

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

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

/* ---------------------------------------------------------
   22. Misc Components
   --------------------------------------------------------- */
.divider {
  border: none;
  height: 1px;
  background: var(--color-border);
  margin: 48px 0;
}

.tag-bronze {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-bronze);
  background: rgba(184,119,58,0.1);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(184,119,58,0.2);
}

/* Notification on form success */
.form-success {
  display: none;
  background: rgba(184,119,58,0.08);
  border: 1px solid rgba(184,119,58,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--color-text);
  text-align: center;
}

.form-success.visible { display: block; }

.form-failure {
  display: none;
  background: rgba(160,43,43,0.08);
  border: 1px solid rgba(160,43,43,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--color-text);
  text-align: center;
}

.form-failure a {
  color: var(--color-bronze);
  font-weight: 600;
}

.form-failure.visible { display: block; }

/* Loading spinner on form submit */
.btn-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
}

.btn-loading::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------------------------------------------------------
   23. Responsive – Tablet
   --------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4        { grid-template-columns: repeat(2, 1fr); }
  .tiles-grid    { grid-template-columns: repeat(2, 1fr); }
  .tile--wide    { grid-column: span 2; aspect-ratio: 16/7; }
  .tile--tall    { grid-row: span 1; }
  .about-grid    { gap: 48px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .tech-grid     { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .benefit-item:nth-child(even) { border-bottom: none; }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .product-detail-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .specs-grid    { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr 1.3fr; gap: 40px; }
  .options-grid  { grid-template-columns: repeat(2, 1fr); }
  .option-groups { gap: 24px; }
  .option-column { gap: 24px; }
  .featured-grid { gap: 40px; }
}

/* ---------------------------------------------------------
   24. Responsive – Mobile
   --------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .main-nav     { display: none; }
  .header-cta   { display: none; }
  .hamburger    { display: flex; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .section { padding: 64px 0; }

  .container { padding: 0 16px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { gap: 12px; }
  .hero-scroll  { display: none; }

  /* Page Hero */
  .page-hero { min-height: 380px; }

  /* Tiles */
  .tiles-grid { grid-template-columns: 1fr; gap: 14px; }
  .tile--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .tile--tall { grid-row: span 1; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit-item  { padding: 20px 16px; }
  .benefit-item  { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
  .benefit-item:nth-child(2n) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .benefit-item:nth-last-child(-n+2) { border-bottom: none !important; }

  /* About */
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .about-badge   { left: 16px; }

  /* Products */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-tag  { display: none; }

  /* Product Detail */
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .tech-grid     { grid-template-columns: repeat(2, 1fr); }
  .options-grid  { grid-template-columns: 1fr; }
  .option-groups { grid-template-columns: 1fr; }
  .option-group--wide { grid-column: auto; }
  .option-block-heading { grid-column: auto; }
  .option-choice-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .option-choice-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .specs-grid    { grid-template-columns: 1fr; }
  .floor-plan    { padding: 20px; }

  /* Process */
  .process-grid  { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Contact */
  .contact-grid  { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-grid-2   { grid-template-columns: 1fr; }
  .form-submit   { flex-direction: column; align-items: stretch; }
  .form-submit .btn { text-align: center; width: 100%; }

  /* Timeline */
  .timeline::before { left: 24px; }
  .timeline-item { gap: 20px; }
  .timeline-dot  { width: 48px; height: 48px; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { gap: 12px; justify-content: center; }

  /* CTA */
  .cta-banner { padding: 72px 0; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; }

  /* Legal */
  .legal-page { padding-top: calc(var(--header-h) + 40px); }

  /* Options Summary */
  .options-summary { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item  { border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
  .process-grid  { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }
  .product-actions { flex-direction: column; }
  .product-actions .btn { min-width: unset; width: 100%; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .option-group { padding: 22px 18px 26px; }
  .option-group-title { margin-bottom: 22px; }
  .option-choice-grid,
  .option-choice-grid--three,
  .option-choice-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }
  .option-choice img {
    width: 78px;
    height: 78px;
  }
  .option-size-badge {
    width: 78px;
    height: 78px;
    font-size: 0.7rem;
  }
}

/* ---------------------------------------------------------
   25. prefers-reduced-motion
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-label, .hero h1, .hero-sub, .hero-actions, .hero-scroll {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .steam-particle { animation: none; }
  .scroll-line    { animation: none; }
  .map-pin        { animation: none; }
}

/* ---------------------------------------------------------
   26. Floating WhatsApp chat
   --------------------------------------------------------- */
.whatsapp-chat {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #B87333;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(34,20,10,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-chat:hover {
  transform: translateY(-2px);
  background: #A76428;
  box-shadow: 0 18px 42px rgba(34,20,10,0.28);
}

.whatsapp-chat-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
}

.whatsapp-chat-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.whatsapp-chat-text {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .whatsapp-chat {
    right: 16px;
    bottom: 16px;
    min-height: 52px;
    padding: 12px 16px;
    font-size: 0.92rem;
  }

  .whatsapp-chat-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .whatsapp-chat-icon img {
    width: 26px;
    height: 26px;
  }
}
