/* ============================================
   MR Personal Training — Premium Stylesheet
   ============================================ */

:root {
  --bg-cream: #F8F5EE;
  --bg-cream-soft: #F2EDE2;
  --bg-cream-warm: #EFE9DA;
  --bg-dark: #0A0A0F;
  --bg-dark-soft: #14141B;
  --bg-card-dark: #1A1A22;
  --gold-light: #F0E4C8;
  --gold: #D4C5A0;
  --gold-warm: #C9B687;
  --gold-dark: #A48A5B;
  --text-dark: #0F0F14;
  --text-muted: #5C5C66;
  --text-soft: #8B8B95;
  --text-light: #EDEDF0;
  --text-light-muted: #A8A8B0;
  --border-light: rgba(15, 15, 20, 0.06);
  --border-light-strong: rgba(15, 15, 20, 0.12);
  --border-dark: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 4px 24px rgba(15, 15, 20, 0.05);
  --shadow-card: 0 12px 40px rgba(15, 15, 20, 0.08);
  --shadow-hover: 0 24px 60px rgba(15, 15, 20, 0.15);
  --shadow-glow: 0 0 80px rgba(212, 197, 160, 0.4);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.4s var(--ease);
  --transition-slow: 0.8s var(--ease);
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --serif-display: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--text-dark);
  color: var(--gold-light);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--serif-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  font-feature-settings: "ss01", "ss02", "liga", "dlig";
}

/* Headlines — premium layered depth, no background-clip tricks */
h1, h2 {
  color: #1A140C;
  font-feature-settings: "ss01", "dlig", "kern", "liga";
  letter-spacing: -0.022em;
  -webkit-font-smoothing: antialiased;
  text-shadow:
    /* Top highlight — adds emboss */
    0 1px 0 rgba(255, 250, 232, 0.85),
    /* Warm gold haze around chars */
    0 0 40px rgba(232, 220, 192, 0.45),
    /* Warm depth shadows (gold-tinted) */
    0 2px 1px rgba(120, 95, 45, 0.1),
    0 4px 6px rgba(120, 95, 45, 0.08),
    /* Cool depth shadows further out */
    0 10px 20px rgba(15, 15, 20, 0.16),
    0 20px 38px rgba(15, 15, 20, 0.1),
    0 30px 56px rgba(15, 15, 20, 0.06);
}

/* Hero headline — richer, more lift */
.hero h1 {
  color: #0E0A06;
  text-shadow:
    0 1px 0 rgba(255, 250, 232, 0.95),
    /* Big warm-gold halo behind the type */
    0 0 80px rgba(232, 220, 192, 0.55),
    0 0 40px rgba(168, 138, 91, 0.25),
    /* Warm depth */
    0 3px 2px rgba(120, 95, 45, 0.12),
    0 8px 12px rgba(120, 95, 45, 0.1),
    /* Cool depth */
    0 14px 28px rgba(15, 15, 20, 0.22),
    0 28px 50px rgba(15, 15, 20, 0.14),
    0 44px 80px rgba(15, 15, 20, 0.08);
}

/* Headlines on dark backgrounds — warm gold tone */
.info-card.large h4,
.cta-card-content h4 {
  color: var(--gold-light);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.45),
    0 0 30px rgba(212, 197, 160, 0.35),
    0 2px 4px rgba(120, 95, 45, 0.4),
    0 8px 16px rgba(0, 0, 0, 0.5);
}

/* Section headlines never animate, never clip */
.section-header h2,
.headline-split,
.headline-split .char,
h1.reveal, h2.reveal {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
  animation: none !important;
  text-wrap: balance;
  hyphens: none;
  word-break: keep-all;
}

/* Headlines on dark backgrounds use gold gradient */
.quote-block h2,
.cta-card-content h4,
.info-card.large h4 {
  background: linear-gradient(180deg, #FBF1D8 0%, #E8DCC0 40%, #B89F70 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.4))
    drop-shadow(0 8px 24px rgba(212, 197, 160, 0.25));
}

h1 {
  font-size: clamp(2.6rem, 7.5vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.15;
}

h4 {
  font-size: 1.18rem;
  font-weight: 600;
  font-family: var(--sans);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2.5rem;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold-dark);
  transform: translateY(-50%);
}

.section-header.center .eyebrow {
  padding-left: 0;
}
.section-header.center .eyebrow::before {
  display: none;
}

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 7rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 1.25rem;
}

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

/* ============================================
   Header — Transparent Glass Pill Nav
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: transparent !important;
  border: none;
  transition: padding var(--transition), background 0.3s var(--ease);
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: clip;
  overflow-y: visible;
}

.header-brand {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
}

.site-header.scrolled {
  padding: 0.9rem 2rem;
}

.header-brand {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.logo-mark {
  font-family: var(--serif-display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: 0.04em;
  text-align: left;
  position: relative;
  transition: transform var(--transition);
  display: inline-block;
}

/* Image logo (SVG) */
.logo-img {
  display: block;
  width: auto;
  height: 56px;
  color: var(--text-dark);
  transition: transform var(--transition), opacity var(--transition);
}

.header-brand:hover .logo-img {
  transform: translateY(-1px);
}

.header-brand:hover .logo-mark {
  transform: translateY(-1px);
}

.logo-mark .sub {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
  padding-left: 0.3em;
}

/* Glass pill navigation (desktop) */
.header-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 0.5rem 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(15, 15, 20, 0.03),
    0 4px 12px rgba(15, 15, 20, 0.04),
    0 14px 32px -6px rgba(15, 15, 20, 0.08),
    0 22px 48px -16px rgba(15, 15, 20, 0.06);
  position: relative;
}

.header-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: var(--text-dark);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  position: relative;
}

.header-nav a:hover {
  background: rgba(255, 255, 255, 0.55);
}

.header-nav .header-nav-cta {
  background: var(--text-dark);
  color: var(--gold-light);
  padding: 0.6rem 0.55rem 0.6rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.35rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 12px rgba(15, 15, 20, 0.2);
}

.header-nav .header-nav-cta:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 15, 20, 0.28);
}

.header-nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
}

/* Menu trigger — mobile only */
.menu-trigger {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1.2rem 0.75rem 1.35rem;
  background: var(--text-dark);
  color: var(--gold-light);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  border: 1px solid var(--text-dark);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 18px rgba(15, 15, 20, 0.25);
  flex-shrink: 0;
}

.menu-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 15, 20, 0.3);
}

.menu-trigger-icon {
  width: 20px;
  height: 12px;
  position: relative;
  display: inline-block;
}

.menu-trigger-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.4s var(--ease), top var(--transition), opacity var(--transition);
}

.menu-trigger-icon span:nth-child(1) { top: 2px; }
.menu-trigger-icon span:nth-child(2) { top: 8px; width: 60%; right: 0; left: auto; }

.menu-trigger[aria-expanded="true"] .menu-trigger-icon span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.menu-trigger[aria-expanded="true"] .menu-trigger-icon span:nth-child(2) {
  top: 5px;
  width: 100%;
  transform: rotate(-45deg);
}

/* Show menu trigger on mobile, hide desktop nav */
@media (max-width: 960px) {
  .header-nav { display: none; }
  .menu-trigger { display: inline-flex; }
}

/* ============================================
   Off-Canvas Overlay Menu
   ============================================ */

.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
}

.overlay-menu.open {
  pointer-events: auto;
  visibility: visible;
}

.overlay-menu-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  clip-path: circle(0% at calc(100% - 5rem) 3rem);
  transition: clip-path 0.9s var(--ease);
}

.overlay-menu.open .overlay-menu-bg {
  clip-path: circle(160% at calc(100% - 5rem) 3rem);
}

.overlay-menu-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8rem 4rem 3rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease) 0s;
}

.overlay-menu.open .overlay-menu-inner {
  opacity: 1;
  transition: opacity 0.4s var(--ease) 0.5s;
}

.overlay-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.overlay-nav li {
  overflow: hidden;
}

.overlay-nav li a {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 0.4rem 0;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--text-light);
  letter-spacing: -0.02em;
  position: relative;
  transform: translateY(110%);
  transition: color 0.4s var(--ease), padding-left 0.4s var(--ease);
}

.overlay-menu.open .overlay-nav li a {
  animation: overlayItemRise 0.9s var(--ease) forwards;
}

.overlay-menu.open .overlay-nav li:nth-child(1) a { animation-delay: 0.55s; }
.overlay-menu.open .overlay-nav li:nth-child(2) a { animation-delay: 0.62s; }
.overlay-menu.open .overlay-nav li:nth-child(3) a { animation-delay: 0.69s; }
.overlay-menu.open .overlay-nav li:nth-child(4) a { animation-delay: 0.76s; }
.overlay-menu.open .overlay-nav li:nth-child(5) a { animation-delay: 0.83s; }
.overlay-menu.open .overlay-nav li:nth-child(6) a { animation-delay: 0.90s; }

@keyframes overlayItemRise {
  to { transform: translateY(0); }
}

.overlay-nav li a:hover {
  color: var(--gold);
  padding-left: 1.5rem;
}

.overlay-nav .num {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold-dark);
  align-self: flex-start;
  padding-top: 0.8rem;
}

.overlay-nav .label {
  position: relative;
}

.overlay-nav .cta-item a {
  color: var(--gold);
}

.overlay-nav .cta-arrow {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.5em;
  align-self: center;
  margin-left: 0.5rem;
  transition: transform var(--transition);
}

.overlay-nav .cta-item a:hover .cta-arrow {
  transform: translateX(0.5rem);
}

.overlay-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.overlay-menu.open .overlay-meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

.meta-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

.meta-value {
  font-family: var(--serif-display);
  font-size: 1.15rem;
  color: var(--text-light);
  transition: color var(--transition);
}

a.meta-value:hover {
  color: var(--gold);
}

/* ============================================
   Side-dot scroll-spy
   ============================================ */

.side-dots {
  position: fixed;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.side-dots.visible {
  opacity: 1;
}

.side-dot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 24px;
  height: 24px;
  position: relative;
  transition: width 0.4s var(--ease);
}

.side-dot span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--text-dark);
  background: transparent;
  transition: all 0.4s var(--ease);
}

.side-dot::before {
  content: attr(data-label);
  position: absolute;
  right: 100%;
  margin-right: 0.85rem;
  padding: 0.3rem 0.7rem;
  background: var(--text-dark);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
  font-weight: 500;
}

.side-dot:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.side-dot:hover span {
  transform: scale(1.3);
}

.side-dot.active span {
  background: var(--text-dark);
  transform: scale(1.4);
}

/* On dark sections invert side-dots */
.side-dots.on-dark .side-dot span {
  border-color: var(--gold-light);
}
.side-dots.on-dark .side-dot.active span {
  background: var(--gold-light);
}

/* ============================================
   Floating CTA
   ============================================ */

.floating-cta {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.7rem 0.7rem 1.3rem;
  background: var(--text-dark);
  color: var(--gold-light);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 40px rgba(15, 15, 20, 0.3);
  opacity: 0;
  transform: translateX(-50%) translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background var(--transition);
  border: 1px solid var(--text-dark);
  overflow: hidden;
}

.floating-cta-label {
  white-space: nowrap;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.floating-cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.floating-cta-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  opacity: 0.5;
  pointer-events: none;
  animation: ctaPulse 2.2s ease-out infinite;
}

@keyframes ctaPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0; }
}

.floating-cta-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.floating-cta:hover .floating-cta-arrow {
  transform: rotate(-45deg);
}

/* ============================================
   Buttons — Premium pill with magnetic hover
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.7rem 0.7rem 1.6rem;
  background: var(--text-dark);
  color: #fff;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: 0.01em;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  border: 1px solid var(--text-dark);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --mx: 0px;
  --my: 0px;
  --lift: 0px;
  transform: translate(var(--mx), calc(var(--my) + var(--lift)));
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--text-dark));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}

.btn:hover {
  --lift: -3px;
  box-shadow: 0 12px 32px rgba(15, 15, 20, 0.3);
}

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

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  color: var(--text-dark);
  border-radius: 50%;
  margin-left: 0.6rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.btn:hover .btn-arrow {
  transform: translateX(4px) rotate(-45deg);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-light-strong);
}

.btn-outline::before {
  background: var(--text-dark);
}

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

.btn-outline:hover {
  color: #fff;
  border-color: var(--text-dark);
}

.btn-outline:hover .btn-arrow {
  background: #fff;
  color: var(--text-dark);
}

/* ============================================
   HERO — Premium with Halo
   ============================================ */

.hero {
  padding-top: 11rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Prevent hero from stretching on extreme viewports (e.g. full-page screenshot capture) */
@media (min-height: 2400px) {
  .hero { min-height: auto; }
}

.hero-halo {
  position: absolute;
  top: -700px;
  left: 50%;
  --mx: 0px;
  --my: 0px;
  --scroll-y: 0px;
  transform: translateX(calc(-50% + var(--mx))) translateY(calc(var(--scroll-y) + var(--my)));
  width: 1500px;
  height: 1500px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at center,
      rgba(232, 220, 192, 0.85) 0%,
      rgba(232, 220, 192, 0.5) 18%,
      rgba(232, 220, 192, 0.2) 32%,
      transparent 50%);
  filter: blur(8px);
}

.hero-halo::before,
.hero-halo::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-halo::before {
  inset: 0;
  background: radial-gradient(circle at center, rgba(232, 220, 192, 0.25), transparent 60%);
  animation: haloBreath 14s ease-in-out infinite;
}

.hero-halo::after {
  inset: 30% 30% auto auto;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(255, 250, 235, 0.6), transparent 70%);
  filter: blur(40px);
  animation: haloShimmer 8s ease-in-out infinite alternate;
}

@keyframes haloBreath {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.92; }
}

@keyframes haloShimmer {
  from { opacity: 0.5; transform: translate(-10%, 10%); }
  to { opacity: 1; transform: translate(10%, -10%); }
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 1100px;
  margin: 0 auto 2rem;
  font-weight: 400;
  font-feature-settings: "ss01", "liga", "dlig";
}

/* Hero headline: static + always visible */

.hero-sub {
  max-width: 660px;
  margin: 0 auto 2.5rem;
  font-size: 1.13rem;
  color: var(--text-muted);
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.85s forwards;
}

.hero-video {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-dark);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 1s forwards;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.hero-video:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: var(--shadow-hover);
}

.hero-video img,
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.video-play::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: ringPulse 2.5s ease-out infinite;
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play svg {
  width: 28px;
  height: 28px;
  fill: var(--text-dark);
  margin-left: 5px;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2A2A35, #14141B);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================
   Problem / Solution Cards
   ============================================ */

.problem-section {
  padding: 5rem 0;
  position: relative;
}

.problem-section--issues {
  padding-bottom: 2.5rem;
}

.problem-section--solution {
  padding-top: 2.5rem;
}

.problem-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ---- Card head: number + icon ---- */
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.card-num {
  font-family: var(--serif-display);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.problem-card {
  background:
    linear-gradient(180deg, #1F1F28 0%, #15151C 60%, #0E0E14 100%);
  color: var(--text-light);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.15),
    0 18px 40px -10px rgba(0, 0, 0, 0.35),
    0 30px 60px -20px rgba(0, 0, 0, 0.2);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  transform: perspective(1000px) rotateY(var(--tilt-x)) rotateX(var(--tilt-y)) translateY(var(--lift));
}

.problem-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 197, 160, 0.35), transparent);
  pointer-events: none;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 197, 160, 0.08), transparent);
  transition: left 0.8s var(--ease);
}

.problem-card:hover {
  --lift: -6px;
  border-color: rgba(212, 197, 160, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(212, 197, 160, 0.18),
    0 0 0 1px rgba(212, 197, 160, 0.15),
    0 24px 50px -8px rgba(0, 0, 0, 0.5),
    0 0 100px -20px rgba(212, 197, 160, 0.25);
}

.problem-card:hover::before {
  left: 100%;
}

.problem-card .card-num {
  color: var(--gold);
}

.problem-card .card-icon {
  color: var(--gold);
  background: linear-gradient(160deg, rgba(212, 197, 160, 0.12), rgba(212, 197, 160, 0.04));
  border: 1px solid rgba(212, 197, 160, 0.18);
}

.problem-card:hover .card-icon {
  background: linear-gradient(160deg, rgba(212, 197, 160, 0.25), rgba(212, 197, 160, 0.08));
  border-color: rgba(212, 197, 160, 0.45);
  transform: rotate(-4deg) scale(1.06);
}

.problem-card h4 {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-size: 1.08rem;
  position: relative;
  z-index: 1;
}

.problem-card p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.solution-card {
  background:
    linear-gradient(160deg, #FBF1D8 0%, #E8DCC0 40%, #C9B687 100%);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 252, 240, 0.7),
    inset 0 -1px 0 rgba(140, 110, 60, 0.15),
    0 1px 2px rgba(120, 95, 50, 0.1),
    0 18px 40px -10px rgba(140, 110, 60, 0.3),
    0 30px 60px -20px rgba(140, 110, 60, 0.15);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  transform: perspective(1000px) rotateY(var(--tilt-x)) rotateX(var(--tilt-y)) translateY(var(--lift));
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 250, 235, 0.5), transparent 60%);
  transform: translate(-50%, -50%);
  transition: width 0.8s var(--ease), height 0.8s var(--ease);
  border-radius: 50%;
  pointer-events: none;
}

.solution-card:hover {
  --lift: -6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 252, 240, 0.85),
    inset 0 -1px 0 rgba(140, 110, 60, 0.2),
    0 28px 60px -12px rgba(140, 110, 60, 0.4),
    0 0 80px -10px rgba(232, 220, 192, 0.5);
}

.solution-card:hover::before {
  width: 250%;
  height: 250%;
}

.solution-card > * {
  position: relative;
  z-index: 1;
}

.solution-card .card-num {
  color: rgba(60, 45, 15, 0.55);
}

.solution-card .card-icon {
  color: #2a2418;
  background: linear-gradient(160deg, rgba(255, 252, 240, 0.7), rgba(232, 220, 192, 0.5));
  border: 1px solid rgba(140, 110, 60, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.solution-card:hover .card-icon {
  background: linear-gradient(160deg, rgba(255, 252, 240, 0.95), rgba(212, 197, 160, 0.7));
  border-color: rgba(140, 110, 60, 0.35);
  transform: rotate(4deg) scale(1.06);
}

.solution-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.08rem;
  position: relative;
  z-index: 1;
}

.solution-card p {
  color: rgba(15, 15, 20, 0.72);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   Quote / Approach Block
   ============================================ */

.quote-block {
  max-width: 760px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, #1F1F28 0%, #15151C 60%, #0E0E14 100%);
  color: var(--text-light);
  padding: 3.5rem 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.2),
    0 24px 60px -10px rgba(0, 0, 0, 0.4),
    0 40px 80px -24px rgba(0, 0, 0, 0.25);
}

.quote-block::before {
  z-index: 1;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 2rem;
  font-family: var(--serif-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}

.quote-block::after {
  content: '';
  position: absolute;
  inset: -50% -50% auto auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 197, 160, 0.15), transparent 70%);
  filter: blur(20px);
  animation: haloShimmer 6s ease-in-out infinite alternate;
}

.quote-block:hover {
  transform: translateY(-4px);
}

.quote-block p {
  font-family: var(--serif-display);
  font-size: 1.45rem;
  font-style: italic;
  margin-bottom: 1.75rem;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #FBF1D8 0%, #E8DCC0 50%, #C9B687 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.35)) drop-shadow(0 4px 16px rgba(212, 197, 160, 0.15));
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.quote-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-display);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.quote-author-name {
  font-size: 0.92rem;
  color: var(--text-light-muted);
}

/* ============================================
   Service Cards
   ============================================ */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF7EF 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 15, 20, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(15, 15, 20, 0.04),
    0 16px 36px -10px rgba(15, 15, 20, 0.12),
    0 32px 60px -20px rgba(15, 15, 20, 0.1);
  transition: all 0.6s var(--ease);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 138, 91, 0.25), transparent);
  pointer-events: none;
  z-index: 3;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 0 0 1px rgba(168, 138, 91, 0.18),
    0 32px 60px -10px rgba(15, 15, 20, 0.2),
    0 0 100px -20px rgba(212, 197, 160, 0.3);
}

.service-card.reverse {
  grid-template-columns: 1.3fr 1fr;
}

.service-card.reverse .service-img {
  order: 2;
}

.service-img {
  background: linear-gradient(135deg, #d4c5a0, #b89f70);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.service-img > div,
.service-img > img {
  transition: transform 0.8s var(--ease);
}

.service-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card:hover .service-img > div,
.service-card:hover .service-img > img {
  transform: scale(1.05);
}

.service-content {
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content .btn {
  align-self: flex-start;
}

.service-content h3 {
  margin-bottom: 1.25rem;
}

.service-content p {
  margin-bottom: 1rem;
}

.service-content ul {
  list-style: none;
  margin-bottom: 1.75rem;
}

.service-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.45rem 0;
  font-size: 0.97rem;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.service-card:hover .service-content li {
  transform: translateX(4px);
}

.service-content li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A48A5B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================================
   Advantages
   ============================================ */

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.advantages-grid .advantage-card:nth-child(1),
.advantages-grid .advantage-card:nth-child(3) {
  margin-top: 2.5rem;
}

.advantages-grid .advantage-card:nth-child(2) {
  padding: 3rem 2.5rem;
  border-color: rgba(212, 197, 160, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(212, 197, 160, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.15),
    0 24px 50px -10px rgba(0, 0, 0, 0.4),
    0 30px 60px -20px rgba(0, 0, 0, 0.25),
    0 0 80px -10px rgba(212, 197, 160, 0.18);
}

.advantages-grid .advantage-card:nth-child(2) .advantage-icon {
  background: rgba(212, 197, 160, 0.2);
  color: var(--gold-light);
}

.advantage-card {
  background:
    linear-gradient(180deg, #1F1F28 0%, #15151C 60%, #0E0E14 100%);
  color: var(--text-light);
  padding: 2.5rem 2.25rem;
  border-radius: var(--radius-md);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.15),
    0 18px 40px -10px rgba(0, 0, 0, 0.35),
    0 30px 60px -20px rgba(0, 0, 0, 0.2);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  transform: perspective(1000px) rotateY(var(--tilt-x)) rotateX(var(--tilt-y)) translateY(var(--lift));
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 197, 160, 0.45), transparent);
  pointer-events: none;
  z-index: 1;
}

.advantage-card::after {
  content: '';
  position: absolute;
  inset: auto auto -50% -50%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 197, 160, 0.2), transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.advantage-card:hover {
  border-color: rgba(212, 197, 160, 0.4);
  --lift: -6px;
  background: linear-gradient(180deg, #26242E 0%, #17171F 100%);
  box-shadow:
    inset 0 1px 0 rgba(212, 197, 160, 0.18),
    0 0 0 1px rgba(212, 197, 160, 0.15),
    0 28px 56px -8px rgba(0, 0, 0, 0.5),
    0 0 80px -20px rgba(212, 197, 160, 0.25);
}

.advantage-card:hover::after {
  opacity: 1;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 197, 160, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: var(--serif-display);
  font-size: 1.3rem;
  font-weight: 500;
  transition: all var(--transition);
}

.advantage-card:hover .advantage-icon {
  background: var(--gold);
  color: var(--text-dark);
  transform: rotate(360deg) scale(1.05);
}

.advantage-card h4 {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.advantage-card p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

/* ============================================
   Story Blocks (Ablauf)
   ============================================ */

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.story-block.reverse {
  direction: rtl;
}
.story-block.reverse > * {
  direction: ltr;
}

.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #d4c5a0, #8a7654);
  position: relative;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  box-shadow: var(--shadow-soft);
}

.story-block:hover .story-img {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.story-img > div,
.story-img > img {
  transition: transform 0.8s var(--ease);
}

.story-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-block:hover .story-img > div,
.story-block:hover .story-img > img {
  transform: scale(1.06);
}

.story-content h3 {
  margin-bottom: 1.25rem;
}

.story-content p {
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

/* ============================================
   Image Strip
   ============================================ */

.image-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.strip-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

.strip-img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.strip-img span {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--serif-display);
  font-size: 0.85rem;
  font-style: italic;
  z-index: 1;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.strip-img:hover span {
  transform: translateY(0);
  opacity: 1;
}

.strip-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 55%);
}

/* ============================================
   About Snippet
   ============================================ */

.about-snippet {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF7EF 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  border: 1px solid rgba(15, 15, 20, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(15, 15, 20, 0.04),
    0 20px 48px -10px rgba(15, 15, 20, 0.12),
    0 40px 80px -24px rgba(15, 15, 20, 0.08);
  transition: box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.about-snippet::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 138, 91, 0.3), transparent);
  pointer-events: none;
  z-index: 2;
}

.about-snippet::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
}

.about-snippet:hover {
  box-shadow: var(--shadow-card);
}

.about-text {
  position: relative;
  z-index: 1;
}

.about-text h3 {
  margin: 1rem 0 1.5rem;
  font-size: 2.2rem;
}

.about-text p {
  margin-bottom: 1.15rem;
  font-size: 1rem;
}

.about-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #d4c5a0, #8a7654);
  transition: transform 0.6s var(--ease);
  position: relative;
  z-index: 1;
}

.about-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img:hover {
  transform: scale(1.02);
}

/* ============================================
   Info Tabs
   ============================================ */

.info-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.08rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
}

.info-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF7EF 100%);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 15, 20, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(15, 15, 20, 0.04),
    0 12px 28px -8px rgba(15, 15, 20, 0.1),
    0 24px 48px -16px rgba(15, 15, 20, 0.08);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  transform: perspective(1000px) rotateY(var(--tilt-x)) rotateX(var(--tilt-y)) translateY(var(--lift));
}

.info-card:hover {
  --lift: -6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 0 0 1px rgba(168, 138, 91, 0.18),
    0 24px 48px -8px rgba(15, 15, 20, 0.15),
    0 0 60px -20px rgba(212, 197, 160, 0.3);
}

.info-card .stat {
  font-family: var(--serif-display);
  font-size: 3.6rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.info-card .stat span {
  color: var(--gold-dark);
}

.info-card h4 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.info-card p {
  font-size: 0.93rem;
}

.info-card.large {
  background: linear-gradient(180deg, #1F1F28 0%, #15151C 60%, #0E0E14 100%);
  color: var(--text-light);
  position: relative;
  border-color: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.15),
    0 18px 40px -10px rgba(0, 0, 0, 0.35),
    0 30px 60px -20px rgba(0, 0, 0, 0.2);
}

.info-card.large::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 197, 160, 0.4), transparent);
  pointer-events: none;
  z-index: 2;
}

.info-card.large::before {
  content: '';
  position: absolute;
  inset: auto auto -50% 50%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 197, 160, 0.2), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.info-card.large > * {
  position: relative;
  z-index: 1;
}

.info-card.large h4 {
  color: var(--text-light);
  font-size: 1.2rem;
}

.info-card.large p {
  color: var(--text-light-muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  padding-top: 0.5rem;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: calc(0.5rem + 32px);
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, var(--gold-dark) 0 6px, transparent 6px 12px);
  opacity: 0.55;
  z-index: 0;
}

.step-item {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transform: none;
}

.step-item::after { display: none; }

.step-item:hover {
  transform: none;
  box-shadow: none;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--text-dark);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 10px var(--bg-cream),
    0 8px 24px rgba(15, 15, 20, 0.22);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.step-item:hover .step-num {
  background: var(--gold-dark);
  color: #fff;
  transform: scale(1.08);
}

.step-item h4 {
  margin-bottom: 0.75rem;
}

.step-item p {
  color: var(--text-muted);
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Location
   ============================================ */

.location-section {
  background: linear-gradient(180deg, #F4EEDE 0%, #EFE7CF 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168, 138, 91, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 252, 240, 0.7),
    0 1px 2px rgba(140, 110, 60, 0.06),
    0 20px 48px -10px rgba(140, 110, 60, 0.15),
    0 40px 80px -24px rgba(140, 110, 60, 0.1);
}

.location-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.6;
}

.location-content {
  position: relative;
  z-index: 1;
}

.location-content h2 {
  margin: 1rem 0 1.25rem;
}

.location-content p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.location-map {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    linear-gradient(135deg, #e0d4b5, #b89f70),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,0.05) 20px 22px);
  background-blend-mode: overlay;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.6s var(--ease);
}

.location-map > iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-map:hover {
  transform: scale(1.02);
}

.location-map .map-pin {
  width: 64px;
  height: 64px;
  background: var(--text-dark);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  animation: pinBounce 2.5s ease-in-out infinite;
}

.location-map .map-pin::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  transform: rotate(45deg);
}

@keyframes pinBounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-12px); }
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light-strong);
  padding: 1.75rem 0;
  transition: padding var(--transition);
}

.faq-item:hover {
  padding-left: 0.5rem;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0;
  font-family: var(--sans);
  transition: color var(--transition);
}

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

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text-dark);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: all var(--transition);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item:hover .faq-toggle {
  background: var(--gold-dark);
  color: #fff;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), padding var(--transition);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 1.25rem;
}

.faq-answer p {
  font-size: 0.98rem;
  line-height: 1.75;
}

/* ============================================
   CTA Banner
   ============================================ */

.cta-banner {
  background: var(--bg-dark);
  padding: 5rem 1.5rem;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 100%;
  background: radial-gradient(ellipse at center 40%, rgba(212, 197, 160, 0.16), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}

.cta-card {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(180deg, #25252E 0%, #1A1A22 60%, #14141B 100%);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 24px 60px -10px rgba(0, 0, 0, 0.5),
    0 0 100px -20px rgba(212, 197, 160, 0.15);
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 197, 160, 0.5), transparent);
  pointer-events: none;
  z-index: 2;
}

.cta-card:hover {
  transform: translateY(-3px);
}

.cta-card-content h4 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.cta-card-content p {
  color: var(--text-light-muted);
  font-size: 0.97rem;
  max-width: 440px;
}

.cta-card-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--text-dark);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  padding: 0.5rem;
  color: #fff;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  --mx: 0px;
  --my: 0px;
  --lift: 0px;
  transform: translate(var(--mx), calc(var(--my) + var(--lift)));
}

.cta-card-btn:hover {
  background: #000;
  --lift: -2px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cta-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-display);
  color: var(--text-dark);
  font-weight: 500;
  flex-shrink: 0;
}

.cta-card-btn .btn-label {
  padding: 0 1.25rem 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.cta-card-btn .btn-arrow {
  background: #fff;
  color: var(--text-dark);
  width: 36px;
  height: 36px;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--bg-dark);
  color: var(--text-light-muted);
  padding: 3rem 0;
  border-top: 1px solid var(--border-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-left {
  font-size: 0.86rem;
}

.footer-left a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-left a:hover {
  color: var(--gold);
}

.footer-logo {
  text-align: center;
}

.footer-logo .logo-mark,
.footer-logo .logo-mark .sub {
  color: var(--text-light);
}

.footer-logo .logo-mark .sub {
  color: var(--text-light-muted);
}

.footer-logo .logo-img {
  margin: 0 auto;
  height: 48px;
  /* invert for dark footer background */
  filter: invert(1) brightness(1.1);
  opacity: 0.92;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  font-size: 0.86rem;
}

.footer-right a {
  color: var(--text-light);
  transition: color var(--transition);
}

.footer-right a:hover {
  color: var(--gold);
}

.footer-right .divider {
  color: var(--text-light-muted);
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--text-dark);
  transform: translateY(-3px) rotate(8deg);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   Legal pages
   ============================================ */

.legal-page {
  padding-top: 9rem;
  padding-bottom: 5rem;
  min-height: 70vh;
}

.legal-page h1 {
  margin-bottom: 2.5rem;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.legal-page h2 {
  font-size: 1.6rem;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.legal-page h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  font-family: var(--sans);
  font-weight: 600;
}

.legal-page p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.legal-page ul {
  margin: 0 0 1rem 1.5rem;
  color: var(--text-muted);
}

.legal-page li {
  margin-bottom: 0.5rem;
  font-size: 0.97rem;
}

.legal-page a {
  color: var(--gold-dark);
  text-decoration: underline;
  transition: color var(--transition);
}

.legal-page a:hover {
  color: var(--text-dark);
}

/* ============================================
   Erstgespraech / Form / Thanks
   ============================================ */

.erstgespraech-page {
  padding-top: 10rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.erstgespraech-page::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(232, 220, 192, 0.5), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.erstgespraech-page > .container {
  position: relative;
  z-index: 1;
}

.erstgespraech-page h1 {
  margin-bottom: 1.5rem;
}

.erstgespraech-page .lead {
  max-width: 580px;
  margin: 0 auto 3rem;
  font-size: 1.13rem;
}

.erstgespraech-video {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-dark);
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 0.6s var(--ease);
}

.erstgespraech-video:hover {
  transform: translateY(-4px);
}

/* Multi-step form */
.form-page {
  padding-top: 10rem;
  padding-bottom: 5rem;
  min-height: 80vh;
}

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.form-wrap::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}

.form-meta {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.form-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--serif-display);
  font-size: 0.92rem;
  color: var(--text-soft);
  letter-spacing: 0.05em;
}

.form-counter-current {
  font-size: 1.4rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-counter-sep {
  opacity: 0.5;
}

.form-counter-total {
  font-size: 1rem;
}

.form-progress {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.form-progress span {
  flex: 1;
  height: 3px;
  background: var(--border-light-strong);
  border-radius: 2px;
  transition: background 0.4s var(--ease);
}

.form-progress span.active {
  background: var(--text-dark);
}

.form-step {
  display: none;
  animation: fadeUp 0.5s var(--ease);
  position: relative;
  z-index: 1;
}

.form-step.active {
  display: block;
}

.form-step h2 {
  margin-bottom: 0.6rem;
  font-size: 2rem;
}

.form-step .step-sub {
  color: var(--text-muted);
  margin-bottom: 2.25rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--border-light-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-cream);
  color: var(--text-dark);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--text-dark);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 15, 20, 0.05);
}

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

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.option-grid-compact {
  grid-template-columns: repeat(2, 1fr);
}

.option-grid-compact .option-card {
  padding: 1rem 0.75rem;
  text-align: center;
  font-size: 0.92rem;
}

@media (min-width: 600px) {
  .option-grid-compact { grid-template-columns: repeat(4, 1fr); }
}

.form-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.form-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg-cream-soft);
  border-left: 3px solid var(--gold-dark);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-note strong {
  color: var(--text-dark);
  font-weight: 600;
}

.cal-embed {
  min-height: 480px;
  margin: 1rem 0;
  border-radius: var(--radius-md);
  background: var(--bg-cream-soft);
  border: 1px solid var(--border-light-strong);
  position: relative;
  overflow: hidden;
}

.cal-embed iframe {
  width: 100%;
  border: 0;
}

.cal-placeholder {
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.cal-placeholder-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 197, 160, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.cal-placeholder-icon svg {
  width: 32px;
  height: 32px;
}

.cal-placeholder h4 {
  color: var(--text-dark);
}

.cal-placeholder p {
  max-width: 440px;
  font-size: 0.95rem;
}

.cal-placeholder-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-light-strong);
  margin-top: 0.75rem;
}

.cal-placeholder-note code {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.8rem;
  background: var(--bg-cream-soft);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  color: var(--text-dark);
}

.option-card {
  border: 1px solid var(--border-light-strong);
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.option-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--text-dark), var(--bg-dark-soft));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}

.option-card:hover {
  border-color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.option-card.selected {
  color: #fff;
  border-color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.option-card.selected::before {
  opacity: 1;
}

.option-card .opt-desc {
  display: block;
  font-weight: 400;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.option-card.selected .opt-desc {
  color: var(--text-light-muted);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.75rem;
  position: relative;
  z-index: 1;
}

.btn-back {
  background: transparent;
  color: var(--text-muted);
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition), gap var(--transition);
}

.btn-back:hover {
  color: var(--text-dark);
  gap: 0.7rem;
}

.btn-back[hidden] {
  visibility: hidden;
}

/* Thank you */
.thanks-page {
  padding-top: 11rem;
  padding-bottom: 6rem;
  text-align: center;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.thanks-page::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(232, 220, 192, 0.5), transparent 55%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.thanks-page > .container-narrow {
  position: relative;
  z-index: 1;
}

.thanks-icon {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  box-shadow: 0 16px 48px rgba(212, 197, 160, 0.5);
  animation: scalePop 0.8s var(--ease) 0.2s both;
}

@keyframes scalePop {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.thanks-icon svg {
  width: 52px;
  height: 52px;
  color: var(--text-dark);
}

.thanks-page h1 {
  margin-bottom: 1.25rem;
}

.thanks-page .lead {
  max-width: 540px;
  margin: 0 auto 3rem;
  font-size: 1.13rem;
}

.thanks-steps {
  max-width: 540px;
  margin: 3rem auto;
  text-align: left;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.thanks-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light-strong);
}

.thanks-step:last-child {
  border-bottom: none;
}

.thanks-step .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text-dark);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 1rem;
  flex-shrink: 0;
}

.thanks-step h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.thanks-step p {
  font-size: 0.93rem;
  margin: 0;
}

/* ============================================
   Reveal Animations
   ============================================ */

.reveal,
.reveal.in-view,
.reveal-left, .reveal-left.in-view,
.reveal-right, .reveal-right.in-view,
.reveal-scale, .reveal-scale.in-view,
.reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4, .reveal-delay-5 {
  opacity: 1;
  transform: none;
  clip-path: none;
  transition: none;
}

/* Section headlines never animate, never clip */
.section-header h2,
.headline-split,
.headline-split .char,
h1.reveal, h2.reveal {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
  animation: none !important;
  text-wrap: balance;
  hyphens: none;
  word-break: keep-all;
}

.headline-split.in-view .char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

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

/* ============================================
   Cursor & Misc
   ============================================ */

@media (hover: hover) {
  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--text-dark);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease), height 0.2s var(--ease), opacity 0.2s ease;
    opacity: 0;
    mix-blend-mode: difference;
  }
  .cursor-dot.visible {
    opacity: 1;
  }
  .cursor-dot.hover {
    width: 40px;
    height: 40px;
    background: var(--gold);
  }
}

/* ============================================
   Responsive — Mobile & Tablet
   ============================================ */

/* Tablet */
@media (max-width: 1100px) {
  .container,
  .container-narrow {
    padding: 0 1.75rem;
  }

  .site-header {
    padding: 1.25rem 1.5rem;
    gap: 1.25rem;
  }

  .header-status {
    font-size: 0.72rem;
    padding: 0.45rem 0.9rem 0.45rem 0.7rem;
  }

  .about-snippet {
    padding: 3rem;
  }

  .location-section {
    padding: 3rem;
  }

  .image-strip {
    grid-template-columns: repeat(6, 1fr);
  }

  .strip-img {
    padding: 0.85rem;
  }
}

@media (max-width: 960px) {
  section {
    padding: 4.5rem 0;
  }

  .site-header {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }

  .header-status {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-trigger {
    padding: 0.7rem 1.2rem 0.7rem 1.3rem;
    font-size: 0.8rem;
  }

  .overlay-menu-inner {
    padding: 6rem 1.75rem 2rem;
  }

  .overlay-meta {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .side-dots {
    display: none;
  }

  /* Floating CTA on mobile: account for safe-area inset */
  .floating-cta {
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    padding: 0.7rem 0.7rem 0.7rem 1.3rem;
    font-size: 0.78rem;
  }

  /* Hide repetitive Erstgespräch CTAs in service cards / cta-banner on mobile —
     the hero CTA + floating CTA cover the conversion role */
  section:not(.hero) a.btn[href*="erstgespraech"],
  .cta-banner {
    display: none;
  }

  .hero {
    padding-top: 8rem;
    min-height: auto;
  }

  .hero-halo {
    width: 1000px;
    height: 1000px;
    top: -500px;
  }

  .problem-grid,
  .solution-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid .advantage-card:nth-child(1),
  .advantages-grid .advantage-card:nth-child(3) {
    margin-top: 0;
  }
  .advantages-grid .advantage-card:nth-child(2) {
    padding: 2.5rem 2.25rem;
  }

  .service-card,
  .service-card.reverse {
    grid-template-columns: 1fr;
  }

  .service-card.reverse .service-img { order: 0; }
  .service-img { min-height: 260px; }
  .service-content { padding: 2rem; }

  .story-block,
  .story-block.reverse,
  .about-snippet,
  .location-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }

  .about-snippet,
  .location-section {
    padding: 2.5rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .quote-block {
    padding: 2.5rem 1.75rem;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-right { justify-content: center; }
  .footer-left { text-align: center; }

  .form-wrap { padding: 2.25rem 1.5rem; }
  .option-grid { grid-template-columns: 1fr; }

  .image-strip { grid-template-columns: repeat(3, 1fr); }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 0;
    padding-left: 1.25rem;
  }
  .steps-grid::before {
    top: 0;
    bottom: 0;
    left: calc(1.25rem + 22px);
    right: auto;
    width: 2px;
    height: auto;
    background-image: repeating-linear-gradient(to bottom, var(--gold-dark) 0 6px, transparent 6px 12px);
  }
  .step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    text-align: left;
    align-items: start;
    padding: 0;
  }
  .step-item .step-num {
    margin: 0;
    box-shadow:
      0 0 0 8px var(--bg-cream),
      0 6px 18px rgba(15, 15, 20, 0.2);
  }
  .step-item p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .cursor-dot { display: none; }

  .card-icon { width: 42px; height: 42px; border-radius: 12px; }
  .card-icon svg { width: 20px; height: 20px; }
}

/* Phone */
@media (max-width: 600px) {
  section { padding: 3.5rem 0; }

  .container,
  .container-narrow {
    padding: 0 1.1rem;
  }

  .section-header { margin-bottom: 2.5rem; }
  .section-header p { font-size: 1rem; }
  .eyebrow { font-size: 0.66rem; padding-left: 2rem; letter-spacing: 0.18em; }
  .eyebrow::before { width: 1.5rem; }

  /* Allow long German compound words to wrap on narrow viewports */
  h1, h2, h3, h4,
  .hero h1, .hero-sub,
  .section-header h2, .section-header p {
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  /* Header */
  .site-header {
    padding: 0.7rem 0.85rem;
    gap: 0.6rem;
    background: rgba(248, 245, 238, 0.72) !important;
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    border-bottom: 1px solid rgba(15, 15, 20, 0.06);
  }
  .site-header.scrolled {
    background: rgba(248, 245, 238, 0.88) !important;
    border-bottom-color: rgba(15, 15, 20, 0.1);
  }
  .logo-mark { font-size: 1.6rem; }
  .logo-mark .sub { font-size: 0.5rem; letter-spacing: 0.32em; }
  .logo-img { height: 38px; max-width: 50vw; }
  .footer-logo .logo-img { height: 42px; }

  .menu-trigger {
    padding: 0.5rem 0.85rem 0.5rem 0.95rem;
    font-size: 0.68rem;
    gap: 0.5rem;
  }
  .menu-trigger-icon { width: 18px; height: 12px; }

  /* Overlay menu */
  .overlay-menu-bg { clip-path: circle(0% at calc(100% - 3.5rem) 2.5rem); }
  .overlay-menu.open .overlay-menu-bg { clip-path: circle(180% at calc(100% - 3.5rem) 2.5rem); }
  .overlay-menu-inner { padding: 5.5rem 1.4rem 1.75rem; gap: 2rem; }
  .overlay-nav li a { font-size: clamp(2rem, 9vw, 3.4rem); gap: 1rem; }
  .overlay-nav .num { font-size: 0.62rem; padding-top: 0.5rem; }
  .meta-value { font-size: 1rem; }

  /* Hero */
  .hero {
    padding-top: 6rem;
    padding-bottom: 2.5rem;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(2rem, 9vw, 3.4rem);
    margin-bottom: 1.25rem;
  }
  .hero-sub {
    font-size: 0.98rem;
    margin-bottom: 1.75rem;
    line-height: 1.55;
  }
  .hero-cta { margin-bottom: 2rem; }
  .hero-video {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
  }
  .video-play { width: 64px; height: 64px; }
  .hero-halo { width: 700px; height: 700px; top: -360px; }

  /* Cards */
  .problem-card, .solution-card, .advantage-card { padding: 1.75rem; }

  .quote-block {
    padding: 2.25rem 1.5rem;
    border-radius: var(--radius-md);
  }
  .quote-block p { font-size: 1.1rem; }
  .quote-block::before { font-size: 3rem; top: 0.25rem; left: 1rem; }

  /* Services */
  .service-content { padding: 1.75rem 1.5rem; }
  .service-img { min-height: 200px; }

  /* Story blocks */
  .story-block, .story-block.reverse { gap: 1.5rem; margin-bottom: 3.5rem; }
  .story-img { aspect-ratio: 16/10; }

  /* About / Location */
  .about-snippet,
  .location-section {
    padding: 1.75rem;
    border-radius: var(--radius-md);
    gap: 1.75rem;
  }
  .about-text h3 { font-size: 1.65rem; }
  .about-img { aspect-ratio: 4/5; max-height: 360px; }
  .location-map { max-height: 280px; }
  .location-map .map-pin { width: 44px; height: 44px; }

  /* Info / Steps */
  .info-card { padding: 1.75rem; }
  .info-card .stat { font-size: 2.8rem; }
  .step-num { width: 48px; height: 48px; font-size: 1.25rem; }
  .steps-grid::before { left: calc(1.25rem + 23px); }

  /* Image strip → horizontal scroll on phone */
  .image-strip {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 1.1rem 0.5rem;
    margin: 0 -1.1rem;
    scrollbar-width: none;
  }
  .image-strip::-webkit-scrollbar { display: none; }
  .strip-img { flex: 0 0 62%; scroll-snap-align: start; }

  /* FAQ */
  .faq-list { max-width: 100%; }
  .faq-question { font-size: 0.98rem; min-height: 44px; }
  .faq-toggle { width: 32px; height: 32px; }
  .faq-item { padding: 1.25rem 0; }

  /* CTA banner */
  .cta-banner { padding: 3rem 0; }
  .cta-card { padding: 1.75rem; border-radius: var(--radius-md); gap: 1.5rem; }
  .cta-card-content h4 { font-size: 1.1rem; }
  .cta-card-btn { width: 100%; justify-content: center; }
  .cta-card-btn .btn-label { padding: 0 0.5rem; font-size: 0.88rem; }

  /* Footer */
  .site-footer { padding: 2rem 0; }
  .footer-left, .footer-right { font-size: 0.8rem; }
  .footer-right { flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

  /* Floating CTA on phone — full pill, centered (positioning set in 960px breakpoint) */
  .floating-cta,
  .floating-cta.visible {
    padding: 0.65rem 0.65rem 0.65rem 1.15rem;
    font-size: 0.74rem;
    gap: 0.5rem;
  }
  .floating-cta-label { display: inline; }
  .floating-cta-arrow { width: 28px; height: 28px; }

  /* Form */
  .form-page { padding-top: 6rem; padding-bottom: 3rem; }
  .form-wrap { padding: 1.5rem 1.25rem; border-radius: var(--radius-md); }
  .form-step h2 { font-size: clamp(1.4rem, 6.5vw, 1.85rem); margin-bottom: 0.4rem; }
  .form-step .step-sub { font-size: 0.93rem; margin-bottom: 1.75rem; }
  .form-progress { flex-wrap: wrap; gap: 0.2rem; }
  .form-progress span { min-width: calc(16.66% - 0.2rem); height: 3px; }
  .form-group input, .form-group textarea, .form-group select {
    padding: 0.85rem 0.95rem;
    font-size: 16px; /* prevent iOS zoom */
  }
  .option-card { padding: 1.1rem 1rem; }
  .option-grid-compact .option-card { padding: 0.85rem 0.5rem; font-size: 0.88rem; }
  .form-actions { margin-top: 1.75rem; flex-wrap: wrap; }
  .btn-back { font-size: 0.85rem; padding: 0.35rem 0.5rem; }

  /* Erstgespraech page */
  .erstgespraech-page { padding-top: 7rem; padding-bottom: 3rem; }
  .erstgespraech-page h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .erstgespraech-page .lead { font-size: 1rem; margin-bottom: 2rem; }
  .erstgespraech-video { aspect-ratio: 4 / 3; border-radius: var(--radius-md); }

  /* Thanks */
  .thanks-page { padding-top: 7rem; padding-bottom: 4rem; }
  .thanks-icon { width: 80px; height: 80px; }
  .thanks-icon svg { width: 40px; height: 40px; }
  .thanks-steps { padding: 1.5rem; margin: 2rem auto; }
  .thanks-step { gap: 0.85rem; padding: 0.85rem 0; }

  /* Legal pages */
  .legal-page { padding-top: 7rem; padding-bottom: 3rem; }
  .legal-page h2 { font-size: 1.3rem; margin-top: 2rem; }
  .legal-page h3 { font-size: 1.02rem; }
  .legal-page p, .legal-page li { font-size: 0.93rem; }

  /* Buttons — bigger touch targets */
  .btn { padding: 0.75rem 0.65rem 0.75rem 1.4rem; font-size: 0.88rem; min-height: 44px; }
  .btn-arrow { width: 32px; height: 32px; }
}

/* Very small */
@media (max-width: 380px) {
  .logo-mark { font-size: 1.4rem; }
  .logo-mark .sub { font-size: 0.45rem; }
  .logo-img { height: 34px; max-width: 48vw; }
  .menu-trigger { padding: 0.55rem 0.75rem; gap: 0.45rem; }
  .menu-trigger-label { display: none; }
  .hero h1 { font-size: clamp(1.8rem, 10vw, 2.6rem); }
  .strip-img { flex-basis: 72%; }
}

/* Touch-device tweaks: kill hover-only effects */
@media (hover: none) {
  .problem-card, .solution-card, .advantage-card,
  .step-item, .info-card,
  .btn, .cta-card-btn,
  .hero-video, .erstgespraech-video,
  .story-img, .about-img, .location-map {
    transform: none !important;
  }
  .video-play { transform: translate(-50%, -50%) !important; }
}

/* Safe-area-insets for notched devices — desktop only;
   mobile floating CTA is centered and handles its own safe-area */
@supports (padding: max(0px)) {
  @media (min-width: 961px) {
    .floating-cta {
      bottom: max(1.75rem, env(safe-area-inset-bottom));
      right: max(1.75rem, env(safe-area-inset-right));
    }
  }
  .site-footer {
    padding-bottom: max(3rem, calc(env(safe-area-inset-bottom) + 2rem));
  }
}

/* Capture mode: forces everything visible (for screenshot tooling) */
.capture-mode *,
.capture-mode *::before,
.capture-mode *::after {
  animation-duration: 0ms !important;
  animation-delay: 0ms !important;
  transition-duration: 0ms !important;
  transition-delay: 0ms !important;
}
.capture-mode .reveal,
.capture-mode .headline-split,
.capture-mode .headline-split .char,
.capture-mode .hero h1,
.capture-mode .hero h1 .word,
.capture-mode .hero h1 .word span,
.capture-mode .hero-sub,
.capture-mode .hero-cta,
.capture-mode .hero-video {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}
.capture-mode .side-dots,
.capture-mode .floating-cta { display: none !important; }
.capture-mode .hero,
.capture-mode .thanks-page,
.capture-mode .erstgespraech-page,
.capture-mode .form-page,
.capture-mode .legal-page { min-height: auto !important; }

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

/* ============================================
   Cookie Banner
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 720px;
  margin: 0 auto;
  z-index: 200;
  background: linear-gradient(180deg, #1F1F28 0%, #15151C 100%);
  color: var(--text-light);
  border: 1px solid rgba(212, 197, 160, 0.2);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.4rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-light-muted);
}

.cookie-banner-text a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--gold-light);
  background: transparent;
  color: var(--gold-light);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.cookie-btn-primary {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}

.cookie-btn-secondary:hover {
  background: var(--gold-light);
  color: var(--text-dark);
}

.cookie-btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--text-dark);
}

/* While banner is open, hide the floating CTA to avoid overlap */
body.cookie-banner-open .floating-cta {
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    left: 0.75rem;
    right: 0.75rem;
    padding: 1rem;
  }
  .cookie-banner-inner { gap: 0.9rem; }
  .cookie-banner-text { font-size: 0.85rem; flex-basis: 100%; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; padding: 0.7rem 0.5rem; }
}
