/* =====================================================
   JACK HAMPEL — Miami Vice Edition
   Light theme · Cyan & Pink accents
   Cyan: #0bd2d3  |  Pink: #f990e8
   v208
   ===================================================== */

/* Self-hosted fonts — DSGVO-konform, kein Google-Server-Kontakt */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-500-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-500-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-500-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- VARIABLES ---------- */
:root {
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --cream:       #F6F2EA;
  --paper:       radial-gradient(ellipse 65% 55% at 110% 5%,  rgba(60,210,210,0.22) 0%, transparent 100%),
                 radial-gradient(ellipse 60% 65% at -10% 95%, rgba(252,120,232,0.22) 0%, transparent 100%),
                 radial-gradient(ellipse 45% 40% at 25% -5%,  rgba(120,228,228,0.16) 0%, transparent 100%),
                 radial-gradient(ellipse 40% 45% at 80% 105%, rgba(255,110,228,0.16) 0%, transparent 100%),
                 linear-gradient(135deg, #fde0fa 0%, #eaf7f7 50%, #d8f3f3 100%);
  --gold:        #0bd2d3;
  --gold-l:      #7eeaeb;
  --gold-d:      #f990e8;
  --ink:         #0A0A0A;
  --charcoal:    #1A1A1A;
  --gray:        #6B6B6B;
  --gray-l:      #A8A8A8;
  --line:        #E8E2D6;

  --f-display:   'Cormorant Garamond', serif;
  --f-serif:     'Cormorant Garamond', Georgia, serif;
  --f-sans:      'Inter', system-ui, sans-serif;

  /* 3 heading sizes — use these everywhere */
  --fs-xl:  clamp(3rem, 6vw, 6.5rem);
  --fs-l:   clamp(2.2rem, 4vw, 4rem);
  --fs-m:   clamp(1.5rem, 2.2vw, 2rem);

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slow:   cubic-bezier(0.77, 0, 0.175, 1);

  --nav-h:       96px;
  --max-w:       1480px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  position: relative;
  font-family: var(--f-sans);
  font-weight: 300;
  background: var(--white);
  overflow-x: clip;
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: 0.01em;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--white); }
em { font-family: var(--f-serif); font-style: italic; color: var(--gold-d); }

/* ---------- LANGUAGE ---------- */
html.lang-de .t-en { display: none !important; }
html.lang-en .t-de { display: none !important; }

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
}
.container-wide {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 80px;
}
section { position: relative; }

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-rule {
  display: block;
  width: 1px;
  height: 60px;
  background: var(--gold);
  margin: 32px auto;
}
.gold-rule-h {
  width: 60px;
  height: 1px;
  margin: 28px 0;
}
.gold-rule-h.center { margin: 28px auto; }

/* ===========================================
   INTRO
   =========================================== */
.intro {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 10000;
  pointer-events: all;
  transition: opacity 1s var(--ease-slow), visibility 1s var(--ease-slow);
}
.intro.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-content {
  position: absolute;
  top: calc(50vh + clamp(280px, 42vw, 460px) * 0.21875);
  left: 0;
  right: 0;
  text-align: center;
}
.intro-mark {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-l);
  letter-spacing: 0.25em;
  color: var(--ink);
  opacity: 0;
  animation: introIn 1.4s var(--ease-slow) 0.2s forwards;
}
.intro-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 28px auto;
  animation: introLine 1.6s var(--ease-slow) 0.6s forwards;
}
.intro-tag {
  font-family: var(--f-sans);
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: introIn 1.4s var(--ease-slow) 1s forwards;
}
@keyframes introIn { to { opacity: 1; } }
@keyframes introLine { to { width: 200px; } }

/* ===========================================
   NAVIGATION
   =========================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: all 0.6s var(--ease-slow);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.transparent .nav-logo,
.nav.transparent .nav-link,
.nav.transparent .lang-btn,
.nav.transparent .lang-sep,
.nav.transparent .nav-hamburger span {
  color: var(--white);
}
.nav.transparent .nav-hamburger span { background: var(--white); }
.nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav.scrolled .nav-logo,
.nav.scrolled .nav-link {
  color: var(--ink);
}
.nav-logo {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  color: var(--white);
  transition: color 0.6s var(--ease-slow);
}
.nav-logo span { color: var(--gold); margin: 0 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-link {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color 0.5s var(--ease-slow);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease-slow), left 0.5s var(--ease-slow);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}
.nav-link.active { color: var(--gold-l); }
.nav.scrolled .nav-link.active { color: var(--gold); }

/* --- DROPDOWN --- */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 5px; }
.nav-dropdown-arrow {
  font-size: 0.55rem; opacity: 0.6;
  transition: transform 0.3s ease;
  display: inline-block;
}
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(90deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 175px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
/* invisible bridge fills the gap so hover isn't lost mid-move */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  height: 20px;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; }
.nav-dropdown-item {
  display: block;
  padding: 10px 24px;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav-dropdown-item:hover { color: var(--gold); }
.nav.transparent .nav-dropdown-menu { background: rgba(5,5,5,0.9); backdrop-filter: blur(8px); }
.nav.transparent .nav-dropdown-item { color: rgba(255,255,255,0.85); }
.nav.transparent .nav-dropdown-item:hover { color: var(--gold); }
/* Mobile dropdown sub-items */
.nav-mobile .nav-sub li a {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 0;
  display: block;
}
.nav-mobile .nav-sub li a:hover { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-btn {
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.5s var(--ease-slow);
}
.lang-btn.active { color: var(--white); }
.nav.scrolled .lang-btn { color: var(--gray-l); }
.nav.scrolled .lang-btn.active { color: var(--gold); }
.lang-sep {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.5s var(--ease-slow);
}
.nav.scrolled .lang-sep { color: var(--gray-l); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  width: 26px; height: 1px;
  background: var(--white);
  transition: background 0.5s var(--ease-slow);
}
.nav.scrolled .nav-hamburger span { background: var(--ink); }
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.nav-mobile.open {
  display: flex; opacity: 1; pointer-events: all;
}
.nav-mobile .nav-link {
  font-size: 1.4rem;
  font-family: var(--f-sans);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
  display: inline-block;
}
.nav-close {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 1.8rem; color: var(--ink);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  user-select: none;
  background: none;
  border: none;
  font-family: inherit;
}
.nav-mobile .nav-sub-label {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
}
.nav-mobile .nav-sub {
  display: none;
  margin-top: 8px;
  padding-left: 0;
  list-style: none;
  text-align: left;
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 32px;
}
.hero-eyebrow {
  position: absolute;
  top: calc(var(--nav-h) + 36px);
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  animation: fadeUp 1.6s var(--ease-slow) 1.6s forwards;
}
.hero-eyebrow-break { display: none; }
.hero-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-xl);
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1.8s var(--ease-slow) 1.8s forwards;
}
.hero-line { display: none; }
@keyframes heroLine { to { width: 80px; } }
.hero-tagline {
  position: absolute;
  top: calc(50vh + clamp(280px, 42vw, 460px) * 0.21875 + 81px);
  left: 0; right: 0;
  text-align: center;
  font-family: var(--f-serif);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-d);
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 1.8s var(--ease-slow) 2.8s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-meta {
  position: absolute;
  bottom: 48px;
  left: 80px;
  z-index: 2;
  font-family: var(--f-sans);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  opacity: 0;
  animation: fadeUp 1.6s var(--ease-slow) 3s forwards;
}
.hero-meta-r {
  position: absolute;
  bottom: 48px;
  right: 80px;
  z-index: 2;
  font-family: var(--f-sans);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  opacity: 0;
  animation: fadeUp 1.6s var(--ease-slow) 3.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp 1.6s var(--ease-slow) 3.4s forwards;
}
.hero-scroll-text {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.6);
}
.hero-scroll-line {
  width: 2px;
  height: 56px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -56px;
  left: 0;
  width: 100%;
  height: 56px;
  background: var(--gold);
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -56px; }
  100% { top: 56px; }
}

/* ===========================================
   STATEMENT — minimal manifesto
   =========================================== */
.statement {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}
.statement-eyebrow {
  display: block;
  margin-bottom: 56px;
}
.statement-text {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--ink);
  max-width: 780px;
  margin: 0 auto;
}
.statement-text em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-d);
}
.statement-author {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-l);
  margin-top: 64px;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 38px;
  font-family: var(--f-sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  position: relative;
  transition: all 0.5s var(--ease-slow);
  cursor: pointer;
  border: none;
}
.btn-arrow {
  font-size: 1rem;
  transition: transform 0.4s var(--ease-slow);
}
.btn:hover .btn-arrow { transform: translateX(8px); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--charcoal);
  letter-spacing: 0.36em;
}

.btn-gold {
  background: var(--gold-d);
  color: var(--white);
}
.btn-gold:hover {
  background: #d870cc;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold-d);
}
.btn-outline:hover {
  background: var(--gold-d);
  color: var(--white);
}
.btn-cyan {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-cyan:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-cyan-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-cyan-dark:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-cyan-white {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-cyan-white:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-pink-white {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--gold-d);
}
.btn-pink-white:hover {
  background: var(--gold-d);
  color: var(--white);
}

.btn-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-light:hover {
  border-color: var(--gold-d);
  background: rgba(249, 144, 232, 0.1);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding: 8px 0;
  transition: color 0.4s var(--ease-slow);
}
.btn-link:hover { color: var(--gold-d); }

/* ===========================================
   PORTFOLIO MOSAIC
   =========================================== */
.portfolio {
  background: var(--white);
  padding: 80px 0;
}
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}
.portfolio-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-l);
  line-height: 1;
  color: var(--ink);
}
.portfolio-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-d);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.prop {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.prop-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.prop-image-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--ease-slow);
}
.prop:hover .prop-image-inner { transform: scale(1.05); }

.prop-1 { grid-column: 1 / 8; }
.prop-1 .prop-image { aspect-ratio: 4/3; }
.prop-1 .prop-image-inner {
  background-image: none;
}

.prop-2 { grid-column: 8 / 13; padding-top: 0; }
.prop-2 .prop-image { aspect-ratio: 14/15; }
.prop-2 .prop-image-inner {
  background-image: none;
}

.prop-3 { grid-column: 1 / 5; }
.prop-3 .prop-image { aspect-ratio: 3/4; }
.prop-3 .prop-image-inner {
  background-image: none;
}

.prop-4 { grid-column: 5 / 13; }
.prop-4 .prop-image { aspect-ratio: 1.57 / 1; }
.prop-4 .prop-image-inner {
  background-image: none;
}

.prop-info {
  display: block;
  position: relative;
  padding: 24px 0 0;
}
.prop-name-line {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.35;
  hyphens: auto;
}
.prop-loc-line {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  padding-right: 120px;
}
.prop-status-tag {
  font-family: var(--f-sans);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-d);
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 0;
  padding-right: 16px;
}
.prop-status-tag.available { color: var(--gold); }
.prop-status-tag::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-d);
}
.prop-status-tag.available::after { background: var(--gold); }

.portfolio-cta {
  text-align: center;
  margin-top: 96px;
}

/* ===========================================
   LIFESTYLE STRIP — image-only storytelling
   =========================================== */
.lifestyle {
  background: var(--white);
  overflow: hidden;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.lifestyle-item {
  display: block;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  cursor: pointer;
  border: 2px solid #fff;
}
.lifestyle-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease-out;
}
.lifestyle-item:hover .lifestyle-img { transform: scale(1.08); }
.lifestyle-cap-text { transition: color 0.3s ease; }
.lifestyle-item:hover .lifestyle-cap-text { color: var(--gold-d); }
.lifestyle-img-1 {
  background-image:
    radial-gradient(ellipse 105% 38% at 0% 100%, rgba(10,10,10,0.62) 0%, rgba(10,10,10,0) 100%),
    url('Wohnungen_Jack_Hampel.webp');
}
.lifestyle-img-2 {
  background-image:
    radial-gradient(ellipse 105% 38% at 0% 100%, rgba(10,10,10,0.62) 0%, rgba(10,10,10,0) 100%),
    url('Häuser_Jack_Hampel.webp');
}
.lifestyle-img-3 {
  background-image:
    radial-gradient(ellipse 105% 38% at 0% 100%, rgba(10,10,10,0.62) 0%, rgba(10,10,10,0) 100%),
    url('Grundstücke_Jack_Hampel.webp');
}
.lifestyle-img-4 {
  background-image:
    radial-gradient(ellipse 105% 38% at 0% 100%, rgba(10,10,10,0.62) 0%, rgba(10,10,10,0) 100%),
    url('Anlageobjekte_Jack_Hampel.webp');
}
.lifestyle-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 3;
}
.lifestyle-cap-num {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
  text-shadow: 0 2px 8px rgba(0,0,0,1), 0 4px 20px rgba(0,0,0,1);
}
.lifestyle-cap-text {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-m);
  
  color: var(--white);
  letter-spacing: 0.05em;
  text-shadow: none;
}

/* ===========================================
   ABOUT TEASER
   =========================================== */
.about {
  background: var(--white);
  padding: 80px 0;
}
#about { padding-bottom: 40px; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 120px;
  align-items: center;
}
#about .about-inner {
  grid-template-columns: 1.1fr 1fr;
}
.about-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-image {
  width: 100%;
  height: 100%;
  background: center/cover;
  filter: saturate(0.9);
  transform: scale(1.08);
  transition: transform 1.4s var(--ease-slow);
  will-change: transform;
}
.about-image-wrap.in-view .about-image {
  transform: scale(1);
}
.about-image-mask {
  position: absolute;
  inset: 0;
  background: var(--white);
  transform-origin: left;
  transition: transform 1.1s var(--ease-slow);
  z-index: 2;
  will-change: transform;
}
.about-image-wrap.in-view .about-image-mask {
  transform: scaleX(0);
}
.about-corner {
  position: absolute;
  width: 60px; height: 60px;
  border-color: var(--gold);
  z-index: 3;
}
.about-corner-tl {
  top: -1px; left: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
}
.about-corner-br {
  bottom: -1px; right: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.about-eyebrow { display: block; margin-bottom: 32px; }
.about-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-l);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 40px;
}
.about-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-d);
}
.about-text p {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.95;
  margin-bottom: 24px;
  max-width: 480px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-family: var(--f-sans);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-l);
}

.about-cta {
  margin-top: 48px;
}

/* ===========================================
   MAGAZINE TEASER
   =========================================== */
.magazine {
  background: var(--paper);
  padding: 120px 0;
}
.mag-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.mag-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.mag-image {
  width: 100%;
  height: 100%;
  background: center/cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease-slow);
  will-change: transform;
}
.mag-image-wrap.in-view .mag-image { transform: scale(1); }

.mag-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
}
.mag-image-tag {
  position: absolute;
  bottom: 32px; left: 32px;
  z-index: 3;
  font-family: var(--f-sans);
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-left: 1px solid var(--gold);
}

.mag-text-wrap { padding-right: 20px; }
.mag-eyebrow { display: block; margin-bottom: 32px; }
.mag-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-l);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 40px;
}
.mag-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-d);
}
.mag-meta {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  margin: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mag-meta-item {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray);
}
.mag-meta-item strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 4px;
}
.mag-text-wrap p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.95;
  margin-bottom: 32px;
  max-width: 480px;
}

/* ===========================================
   SIGNATURE / CLOSING
   =========================================== */
.signature {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.signature .container {
  position: relative;
  z-index: 1;
}
.signature::before { display: none; }
.signature::after  { display: none; }

/* --- Sig bubbles --- */
.sig-bubble {
  display: none;
}

/* Desktop: positions & sizes – JS handles movement via style.translate */
.sb1  { width:310px; height:310px; background:rgba(11,210,211,0.13);  left: 6%;  top:38%; }
.sb2  { width:180px; height:180px; background:rgba(249,144,232,0.11); left:13%;  top:78%; }
.sb3  { width: 84px; height: 84px; background:rgba(11,210,211,0.12);  left: 5%;  top:97%; }
.sb4  { width: 96px; height: 96px; background:rgba(11,210,211,0.12);  left:27%;  top:22%; }
.sb5  { width: 64px; height: 64px; background:rgba(249,144,232,0.11); left:47%;  top:96%; }
.sb6  { width: 56px; height: 56px; background:rgba(11,210,211,0.11);  left:57%;  top:92%; }
.sb7  { width: 44px; height: 44px; background:rgba(11,210,211,0.13);  left:76%;  top:20%; }
.sb8  { width:296px; height:296px; background:rgba(249,144,232,0.12); left:96%;  top:32%; }
.sb9  { width:164px; height:164px; background:rgba(11,210,211,0.11);  left:88%;  top:72%; }
.sb10 { width: 76px; height: 76px; background:rgba(11,210,211,0.12);  left:94%;  top:96%; }
.sb11 { width: 88px; height: 88px; background:rgba(249,144,232,0.10); left:83%;  top:90%; }

/* Mobile: kleiner & weniger */
@media (max-width: 768px) {
  .sb3, .sb4, .sb5, .sb6, .sb7, .sb10, .sb11 { display: none; }
  .sb1 { width:124px; height:124px; }
  .sb2 { width: 80px; height: 80px; }
  .sb8 { width:124px; height:124px; }
  .sb9 { width: 76px; height: 76px; }
}

.sig-eyebrow { display: block; margin-bottom: 28px; }
.sig-text {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-l);
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 24px;
}
.sig-text em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-d);
}
.sig-wink {
  display: inline-block;
  margin-left: 12px;
  vertical-align: baseline;
  font-style: normal;
  animation: wink 5s ease-in-out infinite;
}
@keyframes wink {
  0%, 92%, 100% { transform: rotate(0); }
  94% { transform: rotate(-12deg); }
  96% { transform: rotate(8deg); }
  98% { transform: rotate(-4deg); }
}
/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials {
  padding: 120px 0;
  background: #fff;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: #f9f9f9;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.testi-quote {
  font-family: var(--f-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: -8px;
}
.testi-text {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink);
  flex: 1;
}
.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
}
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 18px;
  border: 1px solid var(--line, rgba(0,0,0,0.1));
  border-radius: 999px;
  color: var(--ink);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.google-rating-badge:hover {
  border-color: var(--gold);
  background: rgba(0,0,0,0.02);
}
.google-rating-score {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.95rem;
}
.google-rating-stars {
  color: #FBBC05;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.google-rating-count {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  color: var(--gray-l);
}
.testi-author {
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 20px;
}
.testi-name {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.testi-city {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--gray-l);
  margin-top: 4px;
}
@media (hover: hover) {
  .testi-card:hover                { background: #f1f1f1; }
  .testi-card:hover .testi-quote  { color: var(--gold-d); }
  .testi-card:hover .testi-stars  { color: var(--gold-d); }
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
}

.sig-line {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 56px auto;
}
.sig-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================================
   FOOTER
   =========================================== */

/* ----- Verkaufsprozess Cinema Scroll ----- */
.proc-cinema {
  position: relative;
  height: 280vh;
}

.proc-cinema-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}

.proc-cinema-steps {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 80px;
  height: 100%;
  display: flex;
  align-items: center;
}

.proc-cinema-step {
  position: absolute;
  left: 0;
  right: 0;
  padding: 0 80px;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(0px);
  will-change: opacity, transform, filter;
}

/* Deko-Kreise deaktiviert (Wunsch: keine Punkte im Hintergrund) */
.proc-cinema-step::before,
.proc-cinema-step::after {
  content: none;
}

/* Step 1 */
.proc-cinema-step:nth-child(1)::before { width: 300px; height: 300px; right: 8%;  top: 15%; opacity: 0.08; }
.proc-cinema-step:nth-child(1)::after  { width: 160px; height: 160px; right: 28%; top: 55%; opacity: 0.12; box-shadow: -110px -90px 0 6px var(--gold); }

/* Step 2 */
.proc-cinema-step:nth-child(2)::before { width: 280px; height: 280px; right: 5%;  top: 40%; opacity: 0.07; }
.proc-cinema-step:nth-child(2)::after  { width: 180px; height: 180px; right: 22%; top: 10%; opacity: 0.11; box-shadow: 100px 150px 0 6px var(--gold); }

/* Step 3 */
.proc-cinema-step:nth-child(3)::before { width: 320px; height: 320px; right: 12%; top: 50%; opacity: 0.07; }
.proc-cinema-step:nth-child(3)::after  { width: 150px; height: 150px; right: 6%;  top: 15%; opacity: 0.13; box-shadow: -90px 130px 0 6px var(--gold); }

/* Step 4 */
.proc-cinema-step:nth-child(4)::before { width: 260px; height: 260px; right: 20%; top: 20%; opacity: 0.09; }
.proc-cinema-step:nth-child(4)::after  { width: 200px; height: 200px; right: 4%;  top: 55%; opacity: 0.10; box-shadow: 140px -100px 0 6px var(--gold); }

/* Step 5 */
.proc-cinema-step:nth-child(5)::before { width: 300px; height: 300px; right: 6%;  top: 30%; opacity: 0.07; }
.proc-cinema-step:nth-child(5)::after  { width: 160px; height: 160px; right: 24%; top: 65%; opacity: 0.12; box-shadow: -80px -120px 0 6px var(--gold); }

/* Step 6 */
.proc-cinema-step:nth-child(6)::before { width: 280px; height: 280px; right: 15%; top: 45%; opacity: 0.08; }
.proc-cinema-step:nth-child(6)::after  { width: 190px; height: 190px; right: 3%;  top: 10%; opacity: 0.11; box-shadow: 120px 140px 0 6px var(--gold); }

.proc-cinema-ghost {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-52%);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(16rem, 26vw, 22rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--gold);
  opacity: 1;
  user-select: none;
  pointer-events: none;
}

.proc-cinema-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.proc-cinema-label {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.proc-cinema-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-xl);
  color: var(--ink);
  line-height: 1.05;
  margin: 0;
}

.proc-cinema-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

.proc-cinema-desc {
  font-family: var(--f-sans);
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.78;
  max-width: 500px;
  margin: 0;
}

/* Progress bar — left edge */
.proc-cinema-header {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.proc-progress-bar {
  position: absolute;
  left: 40px;
  top: 30%;
  bottom: 10%;
  width: 1px;
  background: var(--line);
  z-index: 10;
}
.proc-progress-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: var(--gold);
  transition: height 0.08s linear;
}

/* Step dots — right edge */
.proc-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
}
.proc-dot {
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(0,0,0,0.15);
  transition: width 0.3s ease, background 0.3s ease;
}
.proc-dot.active {
  width: 32px;
  background: var(--gold);
}

/* Mobile: cinema scroll adapted */
@media (max-width: 768px) {
  .proc-cinema { display: block; }

  .proc-cinema-sticky {
    padding: 0;
  }

  .proc-cinema-header {
    top: 20px;
    padding: 0 24px;
    text-align: left;
  }
  .proc-cinema-header .eyebrow { font-size: 0.7rem; }
  .proc-cinema-header .values-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .proc-progress-bar { display: none; }

  .proc-dots {
    right: 14px;
    gap: 10px;
  }
  .proc-dot { width: 14px; }
  .proc-dot.active { width: 22px; }

  .proc-cinema { height: 320vh; }

  .proc-cinema-sticky {
    overflow: visible;
    align-items: flex-start;
    height: 100vh;
    height: 100dvh;
  }

  .proc-cinema-header {
    display: block;
    top: 70px;
  }

  .proc-cinema-steps {
    padding: 0 24px;
    width: 100%;
    height: 100%;
    align-items: flex-start;
  }

  .proc-cinema-step { top: 245px; }

  .about-values-warum { margin-top: -280px; }
  .about-values--eig + .signature,
  .about-values--int + .signature { margin-top: -280px; }

  /* Eigentümer: 6 steps brauchen mehr Scrollhöhe als 4-step Interessenten */
  .about-values--eig .proc-cinema { height: 480vh; }
  .about-values--eig .about-values-warum { margin-top: 0; }
  .about-values--int + .signature { margin-top: 0; }

  /* Eigentümer-spezifische Kreis-Anordnung für Steps 2, 4 */
  .about-values--eig .proc-cinema-step:nth-child(2)::before { width:  65px; height:  65px; right: 150px; top: -5px;  opacity: 0.23; }
  .about-values--eig .proc-cinema-step:nth-child(2)::after  { width: 155px; height: 155px; right:   5px; top: 20px;  opacity: 0.10; box-shadow: -75px -90px 0 6px var(--gold); }

  .about-values--eig .proc-cinema-step:nth-child(4)::before { width: 90px;  height: 90px;  right: 15px;  top: 45px; opacity: 0.22; background: var(--gold-l); }
  .about-values--eig .proc-cinema-step:nth-child(4)::after  { width: 145px; height: 145px; right: 60px;  top: -15px; opacity: 0.11; box-shadow: 95px 115px 0 3px var(--gold-d); }

  /* Interessenten-spezifische Kreis-Anordnung für Steps 1, 2, 4 */
  .about-values--int .proc-cinema-step:nth-child(1)::before { width: 140px; height: 140px; right: 10px;  top: 10px;  opacity: 0.12; }
  .about-values--int .proc-cinema-step:nth-child(1)::after  { width: 100px; height: 100px; right: 130px; top: -10px; opacity: 0.21; box-shadow: 60px 115px 0 6px var(--gold); }

  .about-values--int .proc-cinema-step:nth-child(2)::before { width:  60px; height:  60px; right: 30px;  top: -5px;  opacity: 0.24; }
  .about-values--int .proc-cinema-step:nth-child(2)::after  { width: 155px; height: 155px; right: -10px; top: 30px;  opacity: 0.10; box-shadow: -110px -80px 0 6px var(--gold); }

  .about-values--int .proc-cinema-step:nth-child(4)::before { width: 110px; height: 110px; right: 120px; top:  5px;  opacity: 0.20; }
  .about-values--int .proc-cinema-step:nth-child(4)::after  { width: 145px; height: 145px; right:  -5px; top: 15px;  opacity: 0.11; box-shadow: -85px 130px 0 6px var(--gold); }

  .proc-cinema-content {
    max-width: 68vw;
  }

  .proc-cinema-ghost {
    font-size: clamp(9rem, 38vw, 13rem);
    right: 60px;
    top: 25%;
  }

  .proc-cinema-title {
    font-size: clamp(2rem, 7.5vw, 3rem);
    width: min-content;
  }

  .proc-cinema-desc {
    font-size: 1rem;
    max-width: 100%;
  }

  .proc-cinema-step {
    padding: 0 24px;
  }

  /* Step 1: großer Kreis oben rechts (abgeschnitten), kleiner darunter links davon + teal dot */
  .proc-cinema-step:nth-child(1)::before { width: 170px; height: 170px; right: -30px; top: -20px; opacity: 0.13; }
  .proc-cinema-step:nth-child(1)::after  { width:  80px; height:  80px; right: 125px; top:  70px; opacity: 0.24; box-shadow: 110px 20px 0 6px var(--gold); }

  /* Step 2: zwei Kreise nebeneinander + teal dot oben */
  .proc-cinema-step:nth-child(2)::before { width: 120px; height: 120px; right:  10px; top: 30px; opacity: 0.11; }
  .proc-cinema-step:nth-child(2)::after  { width: 115px; height: 115px; right: 120px; top: 10px; opacity: 0.20; box-shadow: 115px 10px 0 6px var(--gold); }

  /* Step 3: großer Kreis rechts, kleiner oben + teal dot links */
  .proc-cinema-step:nth-child(3)::before { width:  65px; height:  65px; right:  50px; top: -10px; opacity: 0.25; }
  .proc-cinema-step:nth-child(3)::after  { width: 160px; height: 160px; right:  -5px; top:  40px; opacity: 0.10; box-shadow: -100px -105px 0 6px var(--gold); }

  /* Step 4: kleiner oben, großer rechts + teal dot oben-rechts */
  .proc-cinema-step:nth-child(4)::before { width:  70px; height:  70px; right: 140px; top:  5px; opacity: 0.22; }
  .proc-cinema-step:nth-child(4)::after  { width: 145px; height: 145px; right:  15px; top: 30px; opacity: 0.12; box-shadow: -90px -100px 0 6px var(--gold); }

  /* Step 5: schräg + teal dot rechts oben */
  .proc-cinema-step:nth-child(5)::before { width: 100px; height: 100px; right: 155px; top:  0px; opacity: 0.19; }
  .proc-cinema-step:nth-child(5)::after  { width: 130px; height: 130px; right:  30px; top: 55px; opacity: 0.11; box-shadow: 50px -100px 0 6px var(--gold); }

  /* Step 6: kleiner oben, großer rechts + teal dot links-oben */
  .proc-cinema-step:nth-child(6)::before { width:  75px; height:  75px; right:   5px; top: -5px;  opacity: 0.23; }
  .proc-cinema-step:nth-child(6)::after  { width: 150px; height: 150px; right:  20px; top: 55px; opacity: 0.11; box-shadow: -130px -120px 0 6px var(--gold); }
}

/* ---- Mobile Steps (hidden — cinema scroll used on all sizes) ---- */
.proc-m { display: none; }
.proc-m-header { display: none; }

@media (max-width: 768px) {
  .proc-m-header {
    display: none;
    text-align: center;
    padding: 40px 24px 32px;
    background: var(--white);
  }
  .proc-m {
    display: block;
    background: var(--white);
    position: relative;
    padding-left: 52px;
  }

  .proc-m-track { display: none; }
  .proc-m-fill  { display: none; }

  /* Fixed progress bar at bottom of screen */
  .proc-m-topbar {
    position: fixed;
    bottom: 0; left: 0;
    height: 5px;
    width: 0%;
    background: var(--gold);
    box-shadow: 0 -2px 12px rgba(11,210,211,0.5);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.12s linear;
  }

  /* Step card */
  .proc-m-step {
    position: relative;
    padding: 56px 24px 56px 20px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(60px) scale(0.97);
    transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
                transform 0.9s cubic-bezier(0.22,1,0.36,1);
  }
  .proc-m-step:last-child { border-bottom: none; }

  /* Decorative circles per step */
  .proc-m-step::before,
  .proc-m-step::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--gold-d);
    pointer-events: none;
  }

  .proc-m-step:nth-child(1)::before { width: 180px; height: 180px; right: 5%;  top: 10%;  opacity: 0.08; }
  .proc-m-step:nth-child(1)::after  { width: 100px; height: 100px; right: 28%; top: 55%;  opacity: 0.12; }

  .proc-m-step:nth-child(2)::before { width: 160px; height: 160px; right: 3%;  top: 40%;  opacity: 0.07; }
  .proc-m-step:nth-child(2)::after  { width: 110px; height: 110px; right: 22%; top: 8%;   opacity: 0.11; }

  .proc-m-step:nth-child(3)::before { width: 190px; height: 190px; right: 8%;  top: 50%;  opacity: 0.07; }
  .proc-m-step:nth-child(3)::after  { width:  90px; height:  90px; right: 4%;  top: 12%;  opacity: 0.13; }

  .proc-m-step:nth-child(4)::before { width: 160px; height: 160px; right: 18%; top: 15%;  opacity: 0.09; }
  .proc-m-step:nth-child(4)::after  { width: 120px; height: 120px; right: 3%;  top: 55%;  opacity: 0.10; }

  .proc-m-step:nth-child(5)::before { width: 175px; height: 175px; right: 4%;  top: 25%;  opacity: 0.07; }
  .proc-m-step:nth-child(5)::after  { width: 100px; height: 100px; right: 22%; top: 65%;  opacity: 0.12; }

  .proc-m-step:nth-child(6)::before { width: 170px; height: 170px; right: 12%; top: 45%;  opacity: 0.08; }
  .proc-m-step:nth-child(6)::after  { width: 115px; height: 115px; right: 2%;  top: 8%;   opacity: 0.11; }
  .proc-m-step.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  /* Growing left accent line — appended to body, truly screen-left */
  .proc-m-accent {
    position: absolute;
    left: 28px;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: opacity 0.3s ease;
    z-index: 50;
    pointer-events: none;
  }

  /* Dot on the track */
  .proc-m-step::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 62px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.12);
    z-index: 1;
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    transform: scale(0.7);
  }
  .proc-m-step.visible::before {
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.18);
    transform: scale(1);
  }

  /* Ghost number */
  .proc-m-ghost {
    position: absolute;
    top: 20%;
    right: 12px;
    transform: translateY(-50%);
    font-family: var(--f-display);
  font-weight: 500;
    font-size: clamp(11rem, 44vw, 16rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--gold);
    opacity: 0;
    user-select: none;
    pointer-events: none;
    transition: opacity 0.9s ease 0.2s;
  }
  .proc-m-step.visible .proc-m-ghost { opacity: 0.18; }

  .proc-m-content {
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .proc-m-label {
    display: block;
    font-family: var(--f-display);
  font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.32em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
  }
  .proc-m-step.visible .proc-m-label { opacity: 1; transform: translateY(0); }

  .proc-m-title {
    font-family: var(--f-display);
  font-weight: 500;
    font-size: var(--fs-xl);
    color: var(--ink);
    width: min-content;
    line-height: 1.05;
    margin: 0;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease 0.18s, transform 0.5s ease 0.18s;
  }
  .proc-m-step.visible .proc-m-title { opacity: 1; transform: translateY(0); }

  .proc-m-rule {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin: 24px 0;
    transition: width 0.4s cubic-bezier(0.22,1,0.36,1) 0.28s;
  }
  .proc-m-step.visible .proc-m-rule { width: 40px; }

  .proc-m-desc {
    font-family: var(--f-sans);
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.78;
    margin: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease 0.34s, transform 0.45s ease 0.34s;
  }
  .proc-m-step.visible .proc-m-desc { opacity: 1; transform: translateY(0); }
}

/* ----- Warum Cells ----- */
.why-cells {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}
.why-cell {
  padding: 36px 32px 0 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-cell:last-child { border-right: none; padding-right: 0; }
.why-tick {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.why-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .why-cells { grid-template-columns: repeat(2, 1fr); }
  .why-cell:nth-child(2n) { border-right: none; padding-right: 0; }
  .why-cell { border-bottom: 1px solid var(--line); padding-bottom: 28px; }
}
@media (max-width: 480px) {
  .why-cells { grid-template-columns: 1fr; }
  .why-cell { border-right: none; }
}

/* ===================================================
   WARUM — High-end redesign
   =================================================== */
.whr-eyebrow {
  display: block;
  color: var(--gold);
  margin-bottom: 32px;
}

.whr-hd {
  padding-bottom: 0;
}

.whr-heading {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-l);
  color: var(--ink);
  line-height: 1.06;
  margin: 0;
}

.whr-heading em {
  font-family: var(--f-serif);
  color: var(--gold-d);
  font-style: italic;
}

/* Overview grid */
.whr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-bottom: 80px;
}

.whr-cell {
  background: #f9f9f9;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 4px;
  padding: 36px 32px 32px;
  transition: background 0.3s ease;
}

.whr-cell-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 20px;
}

.whr-cell-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}

.whr-cell-name {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-m);
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.whr-cell-desc {
  font-family: var(--f-sans);
  font-size: 1rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.7;
  margin: 0;
}

.whr-cell-closing {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gold);
  line-height: 1.5;
  margin: 16px 0 0;
  font-style: italic;
}

@media (hover: hover) {
  .whr-cell:hover                  { background: #f1f1f1; }
  .whr-cell:hover .whr-cell-rule   { width: 44px; }
  .whr-cell:hover .whr-cell-name   { color: var(--gold-d); }
}

@media (max-width: 768px) {
  .about-values-warum { padding: 80px 0 0; }
  .whr-hd  { padding-bottom: 0; }
  .whr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-bottom: 80px;
    margin-top: 40px;
  }
  .whr-cell { padding: 28px 20px 24px; }
}
@media (max-width: 480px) {
  .whr-grid { grid-template-columns: 1fr; }
}

.footer {
  background: var(--white);
  padding: 100px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.footer-brand-logo {
  width: 160px;
  height: auto;
  margin-bottom: 8px;
}
.footer-tag {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
}
.footer-bio {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-d);
  line-height: 1.6;
  max-width: 360px;
}
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}
.footer-social-link {
  color: var(--gray);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}
.footer-social-link:hover { color: var(--gold); }
.footer-col-title {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-link {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray);
  transition: color 0.4s var(--ease-slow);
}
.footer-link:hover { color: var(--ink); }
/* ====================== WERTERMITTLUNG CTA ====================== */
.valuation {
  position: relative;
  background: var(--white);
  padding: 0 0 80px;
  text-align: center;
  overflow: hidden;
}
.valuation > .container {
  max-width: none;
  padding: 0;
}
.valuation-media {
  position: relative;
}
.valuation-inner {
  position: absolute;
  top: clamp(60px, 12vw, 160px);
  left: clamp(20px, 4vw, 70px);
  max-width: 420px;
  padding: clamp(28px, 3vw, 44px);
  text-align: left;
  z-index: 2;
  background: rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.valuation-eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gray);
}
.valuation-eyebrow::before {
  content: '';
  position: absolute;
  inset: -18px -30px;
  background: rgba(255, 255, 255, 0.8);
  filter: blur(14px);
  z-index: -1;
  pointer-events: none;
}
.valuation-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 24px;
  text-shadow: 0 0 16px #fff, 0 0 32px #fff, 0 0 50px #fff, 0 0 70px #fff;
}
.valuation-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-d);
}
.valuation-text {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 460px;
  margin: 0 0 40px;
  text-shadow: 0 0 12px #fff, 0 0 24px #fff, 0 0 38px #fff;
}
.valuation-actions { justify-content: flex-start; }
.valuation-img {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .valuation { padding: 0 0 60px; }
  .valuation-inner {
    position: relative;
    top: auto;
    left: auto;
    max-width: none;
    margin: -70px 16px 0;
    padding: 32px 26px;
  }
}

.footer-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-google-badge:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  font-family: var(--f-sans);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--gray-l);
}
.footer-bottom-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s var(--ease-slow);
}
.footer-bottom-link:hover { color: var(--ink); }
.footer-bottom em {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-d);
  letter-spacing: 0.02em;
  text-transform: none;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s var(--ease-slow), transform 1.1s var(--ease-slow);
  will-change: opacity, transform;
}
.anim.in-view {
  opacity: 1;
  transform: translateY(0);
}
.anim-d-1 { transition-delay: 0.1s; }
.anim-d-2 { transition-delay: 0.2s; }
.anim-d-3 { transition-delay: 0.3s; }
.anim-d-4 { transition-delay: 0.4s; }

/* ===========================================
   FAQ ACCORDION
   =========================================== */
.faq {
  padding: 120px 0;
  background: #fff;
}
.faq-header {
  margin-bottom: 60px;
}
.faq-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-l);
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.05;
  margin: 0;
}
.faq-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-d);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq-main {
  min-width: 0;
}
.faq-sidebar {
  position: sticky;
  top: 120px;
}
.faq-sidebar-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-image: url('Jack Hampel.webp');
  background-size: cover;
  background-position: center top;
  margin-bottom: 32px;
}
.faq-intro {
  font-family: var(--f-sans);
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.85;
  margin: 0;
}
.faq-list {
  width: 100%;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  gap: 24px;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {}
.faq-answer p {
  font-family: var(--f-sans);
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.85;
  padding-bottom: 28px;
  max-width: 680px;
  margin: 0;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1100px) {
  .container, .container-wide, .nav-inner { padding: 0 48px; }
  .hero-meta { left: 48px; }
  .hero-meta-r { right: 48px; }
  .about-inner, .mag-inner, #about .about-inner { grid-template-columns: 1fr; gap: 60px; }
  #about .about-image-wrap { order: -1; }
  .faq-inner { grid-template-columns: 1fr; gap: 60px; }
  .faq-sidebar { position: static; }
  .faq-sidebar-img { aspect-ratio: 3 / 4; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
  .container, .container-wide, .nav-inner { padding: 0 24px; }
  .hero-meta { left: 24px; bottom: 20px; transform: none; }
  .hero-meta-r { right: 24px; bottom: 20px; display: block; }
  .statement, .portfolio, .about, .magazine, .signature { padding: 80px 0; }
  #about { padding-bottom: 40px; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 32px; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 40px; }
  .prop-1, .prop-2, .prop-3, .prop-4 { grid-column: 1 / -1; padding-top: 0; }
  .prop-1 .prop-image, .prop-2 .prop-image, .prop-3 .prop-image, .prop-4 .prop-image { aspect-ratio: 4/3; }
  .about-image { background-position: top center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-stats { grid-template-columns: 1fr; gap: 2px; border-top: none; padding-top: 0; margin-top: 32px; }
  .about-stats > div { text-align: center; padding: 28px 24px; border: 1px solid var(--line); }
  .about-stats .stat-num { font-size: clamp(2rem, 10vw, 3rem); display: block; line-height: 1; margin-bottom: 10px; }
  .about-stats .stat-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray-l); }
}
@media (max-width: 480px) {
  .lifestyle-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .sig-actions { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: 1fr; gap: 2px; border-top: none; padding-top: 0; }
  .about-stats > div { text-align: center; padding: 28px 24px; border: 1px solid var(--line); }
  .about-stats .stat-num { font-size: clamp(2rem, 10vw, 3rem); display: block; line-height: 1; margin-bottom: 10px; }
  .about-stats .stat-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray-l); }
}

/* ===========================================
   PAGE HERO — sub-pages
   =========================================== */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
  padding-bottom: 88px;
}
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
  will-change: transform;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero-eyebrow {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-slow) 0.3s forwards;
}
.page-hero-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-xl);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-slow) 0.5s forwards;
}
.page-hero-line {
  width: 0; height: 1px;
  background: var(--gold);
  margin-top: 32px;
  animation: heroLine 1.4s var(--ease-slow) 1s forwards;
}

/* ===========================================
   ABOUT PAGE — Story
   =========================================== */
.about-story {
  background: var(--white);
  padding: 120px 0;
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 120px;
  align-items: start;
}
.about-story-inner--avatar {
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
}
.about-story-inner--reverse {
  grid-template-columns: 1.15fr 1fr;
}
.about-story-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-story-image-wrap--circle {
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 100%;
}
.about-story-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 1.4s var(--ease-slow);
}
.about-story-image-wrap.in-view .about-story-img { transform: scale(1); }
.about-story-mask {
  position: absolute;
  inset: 0;
  background: var(--white);
  transform-origin: bottom;
  transition: transform 1.1s var(--ease-slow);
  z-index: 2;
  will-change: transform;
}
.about-story-image-wrap.in-view .about-story-mask { transform: scaleY(0); }

.about-pull {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.55;
  color: var(--gold-d);
  border-left: 2px solid var(--gold);
  padding-left: 32px;
  margin: 48px 0;
}
.about-body p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--gray);
  margin-bottom: 22px;
  max-width: 520px;
}

/* ABOUT — Dark Lifestyle Strip */
.about-dark {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}
.about-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.about-dark-item {
  aspect-ratio: 2/3;
  position: relative;
  overflow: hidden;
}
.about-dark-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.6s var(--ease-slow);
}
.about-dark-item:hover .about-dark-img { transform: scale(1.06); }
.about-dark-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.72) 0%, transparent 100%);
  padding: 64px 32px 32px;
  z-index: 2;
}
.about-dark-num {
  font-family: var(--f-sans);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 8px;
}
.about-dark-label {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-m);
  color: var(--white);
  letter-spacing: 0.05em;
}

/* ABOUT — Values */
.about-values {
  background: var(--white);
  padding: 80px 0;
}
.about-values--gradient {
  background: var(--paper);
}
.values-header {
  text-align: center;
  margin-bottom: 48px;
}
.about-values-warum {
  background: var(--white);
  padding: 80px 0 0;
}
.values-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-l);
  color: var(--ink);
  margin-top: 0;
}
.values-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-d);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.value-item {
  background: var(--white);
  padding: 64px 48px;
  text-align: center;
  position: relative;
}
.value-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 48px; right: 48px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-slow);
}
.value-item:hover::before { transform: scaleX(1); }
.value-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}
.value-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-m);
  color: var(--ink);
  margin-bottom: 16px;
}
.value-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.85;
}

/* ABOUT — Stats section */
.about-stats-section {
  background: var(--white);
  padding: 80px 0 40px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.stat-block {
  text-align: center;
  padding: 56px 32px;
  border: 1px solid var(--line);
}
.stat-block-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 3.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-block-label {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-l);
}

/* ===========================================
   PORTFOLIO PAGE
   =========================================== */
.portfolio-page {
  background: var(--white);
  padding: 120px 0 60px;
}
.portfolio-page-header {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.portfolio-page-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-l);
  color: var(--ink);
  line-height: 1;
}
.portfolio-page-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-d);
}
.portfolio-count {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-l);
}
.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
.prop-full {
  cursor: pointer;
}
.prop-full-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.prop-full-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease-slow);
}
.prop-full:hover .prop-full-img { transform: scale(1.0); }
.prop-full-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 8px 14px;
  font-family: var(--f-sans);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.prop-full-badge.available {
  background: var(--white);
  color: var(--gold);
}
.prop-full-badge.sold {
  background: var(--gold-d);
  color: var(--white);
}
.prop-full-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-m);
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.prop-full-loc {
  font-family: var(--f-sans);
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
.prop-full-price {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--gold);
}

.propstack-iframe {
  width: 100%;
  min-height: 800px;
  border: none;
  display: block;
  margin-top: 60px;
}

@keyframes prop-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.prop-skeleton-img {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 800px 100%;
  animation: prop-shimmer 1.4s infinite;
}
.prop-skeleton-line {
  height: 14px;
  border-radius: 4px;
  margin-top: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 800px 100%;
  animation: prop-shimmer 1.4s infinite;
  width: 80%;
}
.prop-skeleton-short { width: 50%; }
.prop-skeleton-price { width: 35%; margin-top: 12px; }
.portfolio-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: var(--gray);
  font-size: 1rem;
  font-weight: 300;
}

/* ===========================================
   MAGAZINE PAGE
   =========================================== */
.mag-page-intro {
  background: var(--white);
  padding: 120px 0;
}
.mag-page-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 120px;
  align-items: center;
}
.mag-page-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(8rem, 14vw, 14rem);
  color: var(--line);
  line-height: 0.8;
  user-select: none;
}
.mag-page-intro-text { }
.mag-page-intro-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-l);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 32px;
}
.mag-page-intro-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-d);
}
.mag-page-intro-body p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.95;
  margin-bottom: 20px;
  max-width: 480px;
}

.mag-editions-section {
  background: var(--paper);
  padding: 120px 0;
}
.editions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 72px;
}
.edition-card { cursor: pointer; }
.edition-cover {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 28px;
  position: relative;
}
.edition-cover-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease-slow);
  filter: saturate(0.85);
}
.edition-card:hover .edition-cover-img { transform: scale(1.0); }
.edition-roman {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 3rem;
  color: rgba(255,255,255,0.25);
  line-height: 1;
}
.edition-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.edition-year {
  font-family: var(--f-sans);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.edition-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-m);
  color: var(--ink);
  margin-bottom: 10px;
}
.edition-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}
.edition-specs {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.edition-spec {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray-l);
}

.mag-exclusive {
  background: var(--ink);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mag-exclusive::before {
  content: 'JH';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 40vw;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.mag-exclusive-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-l);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.mag-exclusive-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-d);
}
.mag-exclusive-text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

/* ===========================================
   CONTACT PAGE
   =========================================== */
.contact-section {
  background: var(--white);
  padding: 120px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 120px;
  align-items: start;
}
.contact-form-header {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 32px;
}
.contact-form-header > div:first-child {
  flex: 1;
  min-width: 0;
}
.contact-avatar {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  background-image: url('Jack Hampel Portrait PB.webp');
  background-size: cover;
  background-position: center top;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.contact-form-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-l);
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 28px;
}
.contact-form-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-d);
}
.contact-form-sub {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 52px;
  line-height: 1.75;
  max-width: 440px;
}
.form-group { margin-bottom: 32px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.form-label {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.form-input,
.form-textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.4s var(--ease-slow);
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-l); }
.form-textarea { resize: none; height: 110px; }
.form-submit {
  margin-top: 8px;
  transition: all 0.5s var(--ease-slow) !important;
}
.form-submit.sent {
  background: var(--gold-d) !important;
  letter-spacing: 0.2em;
  pointer-events: none;
}
.form-submit.sent .btn-arrow { display: none; }

.form-required-star { color: var(--gold-d); }
.form-required-note {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.form-error-msg {
  font-size: 0.8rem;
  color: var(--gold-d);
  margin-bottom: 12px;
  padding: 10px 14px;
  border: 1px solid var(--gold-d);
  border-radius: 4px;
}
@keyframes privacy-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.form-privacy-error { animation: privacy-shake 0.4s ease; }
.form-privacy { margin-top: 20px; }
.form-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}
.form-privacy-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-privacy-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-privacy-link:hover { color: var(--gold-d); }

.contact-info-wrap { padding-top: 20px; }
.contact-info-eyebrow { display: block; margin-bottom: 44px; }
.contact-info-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:first-of-type { border-top: 1px solid var(--line); }
.contact-info-icon {
  font-family: var(--f-sans);
  font-size: 1.6rem;
  color: var(--gold);
  min-width: 36px;
  line-height: 1;
  padding-top: 2px;
}
.contact-info-label {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-l);
  margin-bottom: 6px;
}
.contact-info-val {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 300;
}
.contact-info-val a { transition: color 0.4s; }
.contact-info-val a:hover { color: var(--gold); }

.contact-locations {
  background: var(--paper);
  padding: 120px 0;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.location-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.location-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transition: opacity 0.8s var(--ease-slow), transform 1.6s var(--ease-slow);
}
.location-item:hover .location-img { opacity: 0.65; transform: scale(1.06); }
.location-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.location-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-m);
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.location-role {
  font-family: var(--f-sans);
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===========================================
   SUB-PAGE RESPONSIVE
   =========================================== */
@media (max-width: 1100px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 64px; }
  .about-story-inner--reverse .about-story-image-wrap { order: -1; }
  .mag-page-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .mag-page-num { font-size: 8rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 80px; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .stat-block { padding: 32px 12px; }
}
@media (max-width: 768px) {
  .page-hero { height: 45vh; min-height: 420px; padding-bottom: 64px; }
  .values-grid { grid-template-columns: 1fr; gap: 2px; }
  .about-dark-grid { grid-template-columns: 1fr; }
  .about-dark-item { aspect-ratio: 4/3; }
  .portfolio-full-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .editions-grid { grid-template-columns: 1fr; gap: 48px; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .stat-block { padding: 32px 12px; }
  .about-stats-section { padding: 40px 0 24px; }
  .signature { padding: 48px 0 60px; }
  .portfolio-page, .mag-page-intro, .mag-editions-section,
  .mag-exclusive, .contact-section, .contact-locations, .about-story,
  .about-dark, .about-values { padding: 80px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 480px) {
  .contact-form-header { gap: 20px; }
  .contact-avatar { width: 110px; height: 110px; }
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 2px; width: 100%; }
  .stat-block { padding: 28px 24px; min-width: 0; }
  .stat-block-num { font-size: clamp(2rem, 10vw, 3rem); }
  .stat-block-label { font-size: 0.6rem; letter-spacing: 0.3em; }
}

/* ===========================================
   MIAMI VICE LOGO
   =========================================== */
.nav-logo-img {
  height: 44px;
  width: auto;
}
.intro-logo {
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 42vw, 460px);
  height: auto;
  opacity: 0;
  animation: introIn 1.4s var(--ease-slow) 0.2s forwards;
}
.hero-logo {
  position: absolute;
  top: 50vh;
  left: 50%;
  width: clamp(280px, 42vw, 460px);
  opacity: 0;
  animation: fadeUpCentered 1.8s var(--ease-slow) 1.4s forwards;
}
.hero-logo img {
  width: 100%;
  height: auto;
}
@keyframes fadeUpCentered {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 28px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.hero-name { display: none; }

@media (max-width: 768px) {
  .intro-logo {
    width: clamp(160px, 56vw, 260px);
  }
  .intro-content {
    top: calc(50vh + clamp(160px, 56vw, 260px) * 0.21875);
  }
  .hero-logo {
    width: clamp(160px, 56vw, 260px);
    top: 50vh;
  }
  .hero-eyebrow-break { display: inline; }
  .hero-eyebrow {
    top: auto;
    bottom: calc(50vh + 160px);
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    padding: 0 24px;
    white-space: normal;
    line-height: 2;
  }
  .hero-tagline {
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    top: calc(50vh + clamp(220px, 78vw, 340px) * 0.4375 + 32px);
  }
}

/* ===========================================
   AI IMAGE LABEL
   =========================================== */
.faq-sidebar-img { position: relative; }
.contact-avatar  { position: relative; overflow: hidden; }

.lifestyle-item::after,
.about-story-image-wrap::after,
.faq-sidebar-img::after,
.hero::after,
.page-hero::after,
.contact-avatar::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 44px;
  height: 15px;
  background-image: url('LABEL_AI_white transparent.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.5;
  pointer-events: none;
  z-index: 5;
}

.about-story-image-wrap--circle::after,
.contact-avatar::after {
  bottom: 13%;
  right: 13%;
  width: 36px;
  height: 12px;
}
