/* ============================================================
   IMMOVA — Estate Management
   Stylesheet v3 · Airbnb-inspired Marketplace
   Pure white canvas · Navy ink · Gold accent
   ============================================================ */

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/Inter-Light.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/Inter-Regular.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/Inter-Medium.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/Inter-SemiBold.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/Inter-Bold.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/Inter-ExtraBold.woff2') format('woff2'); }

:root {
  /* === BRAND === */
  --navy:           #041225;
  --navy-soft:      #0A1F3A;
  --navy-deep:      #020815;
  --gold:           #D0AD6D;
  --gold-active:    #B8924E;
  --gold-soft:      #E8D4AC;
  --gold-tint:      #FBF5E8;

  /* === SURFACE === */
  --canvas:         #FFFFFF;
  --surface-soft:   #F7F7F7;
  --surface-strong: #F2F2F2;
  --surface-tint:   #FBFAF7;

  /* === TEXT === */
  --ink:            #041225;
  --body:           #3F3F3F;
  --muted:          #6A6A6A;
  --muted-soft:     #929292;
  --on-dark:        #FFFFFF;
  --on-gold:        #041225;

  /* === LINES === */
  --hairline:       #DDDDDD;
  --hairline-soft:  #EBEBEB;
  --border-strong:  #C1C1C1;

  /* === TYPE === */
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* === RADIUS === */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* === SPACING === */
  --s-xxs: 2px;
  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 12px;
  --s-base: 16px;
  --s-lg: 24px;
  --s-xl: 32px;
  --s-xxl: 48px;
  --s-section: 64px;
  --s-section-lg: 96px;

  /* === SHADOW (single tier) === */
  --shadow-float: rgba(0,0,0,0.02) 0 0 0 1px, rgba(0,0,0,0.04) 0 2px 6px 0, rgba(0,0,0,0.1) 0 4px 8px 0;
  --shadow-pill:  rgba(0,0,0,0.04) 0 1px 2px, rgba(0,0,0,0.08) 0 6px 20px;
  --shadow-nav:   rgba(0,0,0,0.04) 0 1px 0;

  /* === MOTION === */
  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--gold-soft); color: var(--ink); }

/* === LAYOUT SHELL === */
.shell {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--s-xl);
  padding-right: var(--s-xl);
}
.shell--wide { max-width: 1440px; }
.shell--narrow { max-width: 960px; }

.section { padding: var(--s-section) 0; position: relative; }
.section--lg { padding: var(--s-section-lg) 0; }
.section--dark {
  background: var(--navy);
  color: var(--on-dark);
}
.section--soft { background: var(--surface-soft); }
.section--tint { background: var(--surface-tint); }

@media (max-width: 768px) {
  .shell { padding: 0 var(--s-base); }
  .section { padding: var(--s-xxl) 0; }
}

/* === TYPOGRAPHY === */
.h-rating {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}
.h-xl {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--ink);
}
.h-lg {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--ink);
}
.h-md {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.h-sm {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.18px;
  color: var(--ink);
}
.t-md {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.t-sm {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}
.body-md {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--body);
}
.body-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: var(--muted);
}
.caption {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.29;
  color: var(--ink);
}
.caption-sm {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.23;
  color: var(--muted);
}
.badge-text {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
}
.uppercase-tag {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  color: var(--gold);
}

.ink { color: var(--ink); }
.muted { color: var(--muted); }
.body-color { color: var(--body); }
.gold { color: var(--gold); }
.text-on-dark { color: var(--on-dark); }
.body-on-dark { color: rgba(255,255,255,0.78); }

/* === EYEBROW (uppercase brand tag with gold dot) === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-active);
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.section--dark .eyebrow { color: var(--gold-soft); }

/* === NAV === */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
  transition: background 320ms var(--ease);
}
.nav-wrap.over-hero {
  background: rgba(4, 18, 37, 0.55);
  backdrop-filter: saturate(170%) blur(18px);
  -webkit-backdrop-filter: saturate(170%) blur(18px);
  border-bottom-color: rgba(255,255,255,0.12);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 80px;
  gap: var(--s-xl);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav__logo {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 240ms var(--ease);
}
.nav-wrap .nav__logo--light { display: none; }
.nav-wrap.over-hero .nav__logo--dark { display: none; }
.nav-wrap.over-hero .nav__logo--light { display: block; }

.nav__menu {
  display: flex;
  gap: var(--s-xl);
  justify-self: center;
}
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 14px;
  border-radius: var(--r-full);
  transition: background 200ms var(--ease), color 200ms var(--ease);
  position: relative;
}
.nav__link:hover { background: var(--surface-strong); }
.nav__link[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__link[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: var(--r-full);
}
.nav-wrap.over-hero .nav__link { color: rgba(255,255,255,0.78); }
.nav-wrap.over-hero .nav__link:hover,
.nav-wrap.over-hero .nav__link[aria-current="page"] { color: var(--on-dark); background: rgba(255,255,255,0.08); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  background: var(--gold);
  color: var(--on-gold);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: background 200ms var(--ease), transform 240ms var(--ease);
}
.nav__cta:hover { background: var(--gold-active); transform: translateY(-1px); }
.nav__cta::after {
  content: '→';
  font-weight: 400;
  transition: transform 240ms var(--ease);
}
.nav__cta:hover::after { transform: translateX(3px); }
.nav-wrap.over-hero .nav__cta { background: var(--gold); color: var(--on-gold); }

/* === BURGER BUTTON (base styles — hidden on desktop) === */
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 200ms var(--ease);
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 64px;
  }
  .nav__menu { display: none; }
  .nav__logo { height: 32px; }
  .nav__brand { margin-right: auto; }
  .nav__burger { display: flex; }
}
.nav__burger:hover { background: rgba(0,0,0,0.05); }
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms var(--ease), opacity 200ms var(--ease), background-color 200ms var(--ease);
  transform-origin: center;
}
.nav-wrap.over-hero .nav__burger span { background: var(--on-dark); }
.nav-wrap.over-hero .nav__burger:hover { background: rgba(255,255,255,0.1); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__burger.is-open span { background: var(--on-dark); }

/* === MOBILE MENU DRAWER === */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--navy);
  color: var(--on-dark);
  padding: 88px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease), visibility 0s linear 320ms;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--on-dark);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 200ms var(--ease);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease), color 200ms var(--ease);
}
.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: none;
}
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 130ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 180ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 230ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 280ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: 330ms; }

.mobile-menu__link::after {
  content: '→';
  font-weight: 400;
  color: var(--gold);
  opacity: 0.6;
}
.mobile-menu__link[aria-current="page"] {
  color: var(--gold);
}
.mobile-menu__link[aria-current="page"]::after { opacity: 1; }

.mobile-menu__cta {
  margin-top: 32px;
  padding: 18px 24px !important;
  background: var(--gold);
  color: var(--navy) !important;
  text-align: center;
  border-radius: var(--r-full);
  border: 0 !important;
  font-size: 17px !important;
  justify-content: center !important;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms var(--ease) 380ms, transform 400ms var(--ease) 380ms;
}
.mobile-menu.is-open .mobile-menu__cta {
  opacity: 1;
  transform: none;
}
.mobile-menu__cta::after { content: '→'; color: var(--navy); opacity: 1 !important; margin-left: 8px; }

.mobile-menu__contact {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  opacity: 0;
  transition: opacity 400ms var(--ease) 440ms;
}
.mobile-menu.is-open .mobile-menu__contact { opacity: 1; }
.mobile-menu__contact a { color: rgba(255,255,255,0.85); }

body.menu-open { overflow: hidden; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.1px;
  border-radius: var(--r-sm);
  background: var(--gold);
  color: var(--on-gold);
  transition: background 200ms var(--ease), transform 240ms var(--ease);
}
.btn:hover { background: var(--gold-active); transform: translateY(-1px); }
.btn::after {
  content: '→';
  font-weight: 400;
  transition: transform 240ms var(--ease);
}
.btn:hover::after { transform: translateX(4px); }
.btn--secondary {
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--secondary:hover { background: var(--ink); color: var(--on-dark); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.btn--ghost:hover { background: var(--surface-strong); border-color: var(--ink); transform: translateY(-1px); }
.btn--dark {
  background: var(--ink);
  color: var(--on-dark);
}
.btn--dark:hover { background: var(--navy-soft); transform: translateY(-1px); }
.btn--lg { height: 56px; padding: 0 32px; font-size: 16px; }
.btn--pill { border-radius: var(--r-full); height: 44px; padding: 0 20px; font-size: 14px; }

.section--dark .btn--ghost { color: var(--on-dark); border-color: rgba(255,255,255,0.3); }
.section--dark .btn--ghost:hover { background: var(--canvas); color: var(--ink); border-color: var(--canvas); }
.section--dark .btn--secondary { background: var(--canvas); color: var(--ink); border-color: var(--canvas); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: gap 240ms var(--ease);
}
.link-arrow:hover { gap: 10px; color: var(--gold-active); }
.link-arrow::after { content: '→'; font-weight: 400; }
.section--dark .link-arrow { color: var(--gold); }
.section--dark .link-arrow:hover { color: var(--gold-soft); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 88vh;
  margin-top: -80px;
  padding-top: 80px;
  display: flex;
  align-items: stretch;
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 880px) {
  .hero {
    margin-top: -64px;
    padding-top: 64px;
    min-height: auto;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  will-change: transform;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(4,18,37,0.78) 0%, rgba(4,18,37,0.55) 45%, rgba(4,18,37,0.25) 80%, rgba(4,18,37,0.1) 100%),
    linear-gradient(180deg, rgba(4,18,37,0.2) 0%, rgba(4,18,37,0.5) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: clamp(64px, 12vh, 120px);
  padding-bottom: clamp(48px, 8vh, 80px);
}
.hero__eyebrow { color: var(--gold-soft); margin-bottom: 24px; }
.hero__eyebrow::before { background: var(--gold); }
.hero__headline {
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -2.5px;
  color: var(--on-dark);
  max-width: 14ch;
}
@media (max-width: 640px) {
  .hero__headline {
    font-size: clamp(24px, 6.4vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.6px;
    max-width: none;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
}
@media (max-width: 380px) {
  .hero__headline {
    font-size: 22px;
    letter-spacing: -0.3px;
  }
}
.hero__headline em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
}
.hero__subline {
  margin-top: 24px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
}
@media (max-width: 640px) {
  .hero__subline {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 16px;
  }
}
.hero__actions {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .hero__actions { margin-top: 28px; }
  .hero__actions .btn { flex: 1 1 calc(50% - 6px); justify-content: center; padding: 0 14px; }
}
.hero__actions .btn { background: var(--gold); color: var(--on-gold); }
.hero__actions .btn:hover { background: var(--gold-soft); color: var(--ink); }
.hero__actions .btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--on-dark);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__actions .btn--ghost:hover {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--canvas);
}

/* Floating badge over hero */
.hero__badge {
  position: absolute;
  right: var(--s-xl);
  bottom: clamp(60px, 8vh, 100px);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  background: var(--canvas);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-float);
  max-width: 280px;
}
@media (max-width: 880px) {
  .hero__badge { display: none; }
}
.hero__badge-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
}
.hero__badge-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34C759;
  box-shadow: 0 0 0 3px rgba(52,199,89,0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52,199,89,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(52,199,89,0.05); }
}
.hero__badge-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.hero__badge-meta {
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 768px) {
  .hero__badge { right: var(--s-base); bottom: 20px; }
}

/* === PAGE HERO (compact for subpages) === */
.page-hero {
  padding: 56px 0 64px;
  background: var(--canvas);
}
.page-hero--dark { background: var(--navy); color: var(--on-dark); }
.page-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--muted);
}
.page-hero__crumbs a { color: var(--muted); }
.page-hero__crumbs a:hover { color: var(--ink); }
.page-hero__crumbs .sep { color: var(--muted-soft); }
.page-hero--dark .page-hero__crumbs { color: rgba(255,255,255,0.6); }
.page-hero--dark .page-hero__crumbs a { color: rgba(255,255,255,0.6); }
.page-hero--dark .page-hero__crumbs a:hover { color: var(--on-dark); }

.page-hero__eyebrow {
  margin-bottom: 24px;
  display: inline-flex;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 880px) {
  .page-hero__grid { grid-template-columns: 1.4fr 1fr; gap: 64px; }
}
.page-hero__title {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.4px;
  color: var(--ink);
}
.page-hero__title em {
  font-style: normal;
  color: var(--gold-active);
}
.page-hero--dark .page-hero__title { color: var(--on-dark); }
.page-hero--dark .page-hero__title em { color: var(--gold); }
.page-hero__title .soft { color: var(--muted); font-weight: 500; }
.page-hero--dark .page-hero__title .soft { color: rgba(255,255,255,0.6); }
.page-hero__lede { font-size: 17px; line-height: 1.55; color: var(--body); max-width: 52ch; }
.page-hero--dark .page-hero__lede { color: rgba(255,255,255,0.78); }

/* === SECTION HEADER === */
.sec-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 48px;
}
@media (min-width: 880px) {
  .sec-head { grid-template-columns: 1.4fr 1fr; gap: 64px; }
}
.sec-head__title {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--ink);
}

/* When a section directly follows a page-hero, shrink the title further to avoid duplicate "big moment" feel */
.page-hero + .section .sec-head__title,
.page-hero + .section--soft .sec-head__title,
.page-hero + .section--dark .sec-head__title {
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.5px;
}
.sec-head__title em { font-style: normal; color: var(--gold-active); }
.sec-head__title .soft { color: var(--muted); font-weight: 600; }
.section--dark .sec-head__title { color: var(--on-dark); }
.section--dark .sec-head__title .soft { color: rgba(255,255,255,0.55); }
.section--dark .sec-head__title em { color: var(--gold); }
.sec-head__lede { font-size: 16px; line-height: 1.5; color: var(--muted); max-width: 48ch; }
.section--dark .sec-head__lede { color: rgba(255,255,255,0.72); }

.sec-head__eyebrow { margin-bottom: 16px; }

/* === VALUES (4-Card Grid) === */
.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values { grid-template-columns: repeat(4, 1fr); } }
.value {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-md);
  transition: border-color 240ms var(--ease), transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.value:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
}
.value__icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-tint);
  color: var(--gold-active);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
}
.value__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.value__body { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* Dark variant: navy background, white text, gold icon */
.values--dark .value {
  background: var(--navy);
  border-color: var(--navy);
}
.values--dark .value:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(4, 18, 37, 0.18);
}
.values--dark .value__icon {
  background: rgba(208, 173, 109, 0.2);
  color: var(--gold);
}
.values--dark .value__title { color: var(--on-dark); }
.values--dark .value__body { color: rgba(255, 255, 255, 0.72); }

/* === SERVICES (Photo-First Cards) === */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 880px) { .services { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); }
.service-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-soft);
  position: relative;
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.04); }
.service-card__num {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  background: var(--canvas);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--ink);
}
.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}
.service-card__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--ink);
}
.service-card__desc { font-size: 14px; line-height: 1.5; color: var(--muted); }
.service-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--hairline-soft);
  margin-top: 4px;
}
.service-card__price {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.service-card__price small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: normal;
}
.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-active);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 240ms var(--ease);
}
.service-card__link:hover { gap: 8px; }
.service-card__link::after { content: '→'; }

.service-card--dark { background: var(--navy); }
.service-card--dark .service-card__title { color: var(--on-dark); }
.service-card--dark .service-card__desc { color: rgba(255,255,255,0.72); }
.service-card--dark .service-card__meta { border-color: rgba(255,255,255,0.15); }
.service-card--dark .service-card__price { color: var(--on-dark); }
.service-card--dark .service-card__price small { color: rgba(255,255,255,0.6); }
.service-card--dark .service-card__link { color: var(--gold); }
.service-card--dark .checklist li { color: rgba(255,255,255,0.72); }
.service-card--dark .checklist li::before { color: var(--gold); }

/* === PROPERTY CARDS (with Drag Strip) === */
.property-strip {
  position: relative;
}
.property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .property-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .property-grid { grid-template-columns: repeat(3, 1fr); } }

.property-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
  cursor: pointer;
}
.property-card__media {
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-soft);
  position: relative;
}
.property-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.property-card:hover .property-card__media img { transform: scale(1.04); }
.property-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  background: var(--canvas);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--ink);
  box-shadow: var(--shadow-pill);
}
.property-card__fav {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}
.property-card__fav:hover { transform: scale(1.1); }
.property-card__fav svg { width: 18px; height: 18px; fill: none; stroke: var(--ink); stroke-width: 2; }
.property-card__fav.is-fav svg { fill: var(--gold); stroke: var(--gold); }
.property-card__body { display: flex; flex-direction: column; gap: 4px; padding: 0 4px; }
.property-card__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.property-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.property-card__rating::before {
  content: '★';
  color: var(--ink);
  font-size: 12px;
}
.property-card__loc { font-size: 14px; color: var(--muted); }
.property-card__desc { font-size: 14px; line-height: 1.45; color: var(--muted); margin-top: 4px; }
.property-card__price {
  font-size: 14px;
  color: var(--ink);
  margin-top: 8px;
}
.property-card__price strong { font-weight: 600; }

/* Dark variant */
.section--dark .property-card__title { color: var(--on-dark); }
.section--dark .property-card__loc,
.section--dark .property-card__desc { color: rgba(255,255,255,0.65); }

/* === HORIZONTAL DRAG STRIP === */
.h-strip {
  position: relative;
  overflow: hidden;
}
.h-strip__inner {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 12px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
@media (hover: none) and (pointer: coarse) {
  .h-strip__inner { cursor: default; scroll-snap-type: x proximity; }
}
.h-strip__inner.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.h-strip__inner::-webkit-scrollbar { display: none; }
.h-strip__inner > * {
  flex: 0 0 calc(85% - 8px);
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .h-strip__inner > * { flex: 0 0 calc(45% - 8px); }
}
@media (min-width: 1024px) {
  .h-strip__inner > * { flex: 0 0 calc(31% - 8px); }
}
.h-strip__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  box-shadow: var(--shadow-pill);
  cursor: pointer;
  transition: transform 220ms var(--ease);
  font-size: 18px;
  color: var(--ink);
}
.h-strip__nav:hover { transform: translateY(-50%) scale(1.05); }
.h-strip__nav--prev { left: -22px; }
.h-strip__nav--next { right: -22px; }
.h-strip__nav.is-hidden { opacity: 0; pointer-events: none; }
@media (max-width: 640px) { .h-strip__nav { display: none; } }

/* === STATS (Rating-Display Moments) === */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.stat__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.section--dark .stat__label { color: rgba(255,255,255,0.6); }
.stat__value {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--ink);
}
.section--dark .stat__value { color: var(--on-dark); }
.stat__value .unit {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--gold-active);
  margin-left: 4px;
  letter-spacing: -1px;
}
.section--dark .stat__value .unit { color: var(--gold); }
.stat__sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.section--dark .stat__sub { color: rgba(255,255,255,0.55); }

/* === METRICS (Larger cards) === */
.metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .metrics { grid-template-columns: repeat(3, 1fr); } }
.metric {
  padding: 32px 24px;
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--canvas);
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}
.metric:hover { border-color: var(--gold); box-shadow: var(--shadow-float); }
.section--dark .metric { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.section--dark .metric:hover { border-color: var(--gold); background: rgba(255,255,255,0.07); }
.metric__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.section--dark .metric__label { color: var(--gold-soft); }
.metric__value {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin: 8px 0;
}
.section--dark .metric__value { color: var(--on-dark); }
.metric__value .unit {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--gold-active);
  letter-spacing: -1px;
}
.section--dark .metric__value .unit { color: var(--gold); }
.metric__tag {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.section--dark .metric__tag { color: var(--on-dark); }
.metric__body { font-size: 14px; line-height: 1.5; color: var(--muted); margin-top: 8px; max-width: 32ch; }
.section--dark .metric__body { color: rgba(255,255,255,0.65); }

/* === PROCESS === */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.process__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 28px 0;
  border-top: 1px solid var(--hairline-soft);
}
.section--dark .process__row { border-color: rgba(255,255,255,0.12); }
.process__row:last-child { border-bottom: 1px solid var(--hairline-soft); }
.section--dark .process__row:last-child { border-color: rgba(255,255,255,0.12); }
@media (min-width: 880px) {
  .process__row { grid-template-columns: 80px 240px 1fr; gap: 32px; align-items: start; }
}
.process__num {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-active);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.section--dark .process__num { color: var(--gold); }
.process__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--ink);
}
.section--dark .process__title { color: var(--on-dark); }
.process__body { font-size: 15px; line-height: 1.55; color: var(--muted); }
.section--dark .process__body { color: rgba(255,255,255,0.72); }

/* === PORTFOLIO STATS (typografisches Statement statt zweiter Intro) === */
.portfolio-stats {
  padding: 8px 0 56px;
}
.portfolio-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.portfolio-stats__grid::before,
.portfolio-stats__grid::after {
  content: '';
  position: absolute;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: var(--hairline);
}
.portfolio-stats__grid::before { left: 33.33%; }
.portfolio-stats__grid::after { left: 66.66%; }
.portfolio-stat {
  text-align: center;
  padding: 16px 8px;
}
.portfolio-stat__num {
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
  font-variant-numeric: lining-nums;
}
.portfolio-stat__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--ink);
}
@media (max-width: 720px) {
  .portfolio-stats__grid { gap: 12px; max-width: 100%; }
  .portfolio-stats__grid::before { left: 33.33%; }
  .portfolio-stats__grid::after { left: 66.66%; }
  .portfolio-stat__num { font-size: clamp(56px, 18vw, 88px); letter-spacing: -2px; }
  .portfolio-stat__label { font-size: 11px; letter-spacing: 1px; }
}

/* === PRINCIPLES (Editorial Layout, 4 nebeneinander zentriert) === */
.principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 880px) {
  .principles {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
.principle {
  position: relative;
  text-align: center;
  padding-top: 16px;
}
.principle__num {
  display: block;
  font-size: clamp(120px, 11vw, 170px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -6px;
  color: rgba(208, 173, 109, 0.18);
  user-select: none;
  pointer-events: none;
  margin-bottom: -40px;
  position: relative;
  z-index: 0;
  font-variant-numeric: lining-nums;
}
.principle__content {
  position: relative;
  z-index: 1;
}
.principle__title {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.principle__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 30ch;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .principle__num {
    font-size: clamp(120px, 32vw, 170px);
    letter-spacing: -6px;
  }
  .principle__body { max-width: 42ch; }
}

/* === PROCESS FLOW (Sequenzieller Step-Flow mit Wave) === */
.process-flow {
  position: relative;
  padding-top: 24px;
}
.process-flow__wave {
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 100px;
  z-index: 0;
  pointer-events: none;
}
.process-flow__wave path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-dasharray: 5 10;
  stroke-linecap: round;
  opacity: 0.55;
}
.process-flow__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  position: relative;
  z-index: 1;
}
@media (min-width: 880px) {
  .process-flow__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step__num {
  width: 92px;
  height: 92px;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 12px var(--navy);
  letter-spacing: -1px;
}
.process-step__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--on-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.process-step__body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  max-width: 36ch;
  margin: 0 auto;
}

/* Vertical offset for desktop wave effect */
@media (min-width: 880px) {
  .process-step:nth-child(2) { margin-top: 40px; }
  .process-step:nth-child(3) { margin-top: 0; }
  .process-step:nth-child(4) { margin-top: 50px; }
}

/* Mobile: vertical layout */
@media (max-width: 880px) {
  .process-flow__wave { display: none; }
  .process-flow__steps {
    position: relative;
  }
  .process-flow__steps::before {
    content: '';
    position: absolute;
    top: 46px;
    bottom: 46px;
    left: 46px;
    width: 2px;
    background: repeating-linear-gradient(
      to bottom,
      var(--gold) 0,
      var(--gold) 5px,
      transparent 5px,
      transparent 15px
    );
    opacity: 0.45;
  }
  .process-step {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 24px;
    text-align: left;
    align-items: start;
  }
  .process-step__num { margin: 0; box-shadow: none; }
  .process-step__content { padding-top: 24px; }
  .process-step__body { max-width: none; margin: 0; }
}

/* === IMAGE BREAK (stiller Parallax-Übergang zwischen Sektionen, ohne Overlay/Text) === */
.image-break {
  position: relative;
  height: clamp(320px, 48vh, 520px);
  overflow: hidden;
  background: var(--surface-soft);
  isolation: isolate;
}
.image-break__bg {
  position: absolute;
  inset: -20% 0;
  z-index: 0;
  will-change: transform;
}
.image-break__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}
@media (max-width: 768px) {
  .image-break { height: clamp(240px, 38vh, 360px); }
  .image-break__bg { inset: 0; }
}

/* === COMPARISON (Mit / Ohne IMMOVA) === */
.comparison { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 0; }
.comparison__col { display: flex; flex-direction: column; gap: 18px; }
.comparison__col--ohne { padding-right: clamp(16px, 3vw, 32px); }
.comparison__col--mit { padding-left: clamp(16px, 3vw, 32px); }
.comparison__label { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin: 0 0 4px; }
.comparison__col--ohne .comparison__label { color: var(--muted); }
.comparison__col--mit .comparison__label { color: var(--gold); }
.comparison__divider { background: var(--rule); }
.comparison__item { display: flex; gap: 10px; font-size: 15px; line-height: 1.6; }
.comparison__col--ohne .comparison__item { color: var(--muted); }
.comparison__col--mit .comparison__item { color: var(--text); }
.comparison__icon { flex-shrink: 0; margin-top: 3px; font-size: 14px; }
.comparison__icon--x { color: #c0392b; }
.comparison__icon--check { color: var(--gold); }
@media (max-width: 719px) {
  .comparison { grid-template-columns: 1fr; gap: 32px; }
  .comparison__col--ohne { padding-right: 0; }
  .comparison__col--mit { padding-left: 0; }
  .comparison__divider { display: none; }
}

/* === PARALLAX FULL-BLEED SECTION (Bild Hintergrund + Navy-Overlay) === */
.parallax-bleed {
  position: relative;
  padding: clamp(80px, 14vh, 160px) 0;
  overflow: hidden;
  color: var(--on-dark);
  isolation: isolate;
}
.parallax-bleed__bg {
  position: absolute;
  inset: -20% 0;
  z-index: 0;
  will-change: transform;
}
.parallax-bleed__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}
.parallax-bleed__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(4,18,37,0.85) 0%, rgba(4,18,37,0.65) 40%, rgba(4,18,37,0.35) 75%, rgba(4,18,37,0.15) 100%),
    linear-gradient(180deg, rgba(4,18,37,0.2) 0%, rgba(4,18,37,0.55) 100%);
  pointer-events: none;
}
.parallax-bleed > .shell {
  position: relative;
  z-index: 2;
}
.parallax-bleed__content { max-width: 640px; }
.parallax-bleed__content .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 20px;
}
.parallax-bleed__content .eyebrow::before {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(208, 173, 109, 0.22);
}
.parallax-bleed__content .h-lg {
  color: var(--on-dark);
  margin-bottom: 20px;
}
.parallax-bleed__content .h-lg span { color: rgba(255, 255, 255, 0.55); }
.parallax-bleed__content p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
  line-height: 1.55;
}
.parallax-bleed__content .checklist { margin-top: 24px; margin-bottom: 32px; }
.parallax-bleed__content .checklist li { color: rgba(255, 255, 255, 0.92); }
.parallax-bleed__content .checklist li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='%23D0AD6D' opacity='0.3'/><path d='M7 12l3 3 7-7' fill='none' stroke='%23E8D4AC' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

@media (max-width: 768px) {
  .parallax-bleed { padding: clamp(64px, 12vh, 100px) 0; }
  .parallax-bleed__bg { inset: 0; } /* no parallax overflow on mobile */
}

/* === CENTERED MODIFIER (für Zitat-Sektionen etc.) === */
.parallax-bleed--center { text-align: center; }
.parallax-bleed--center .parallax-bleed__content {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}
.parallax-bleed--center .eyebrow { display: inline-flex; justify-content: center; margin-bottom: 24px; }
.parallax-bleed--center .checklist {
  text-align: left;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* Quote elements für parallax-bleed */
.parallax-bleed__quote {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.5px;
  color: var(--on-dark);
  margin-bottom: 32px;
}
.parallax-bleed__quote em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}
.parallax-bleed__by {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 8px;
}
.parallax-bleed__by strong {
  font-weight: 600;
  color: var(--on-dark);
  font-size: 15px;
}
.parallax-bleed__by span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
}
.parallax-bleed__divider {
  width: 64px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 48px auto;
}
.parallax-bleed--center .parallax-bleed__by {
  align-items: center;
  text-align: center;
}

/* === TWO COLUMN === */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 880px) { .two-col { grid-template-columns: 1fr 1.1fr; gap: 80px; } }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.two-col__media {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-soft);
}
.two-col__media img { width: 100%; height: 100%; object-fit: cover; }
.two-col__prose .h-lg { margin-bottom: 16px; }
.two-col__prose p { margin-bottom: 16px; color: var(--body); }
.two-col__prose p:last-child { margin-bottom: 0; }
.two-col__prose .checklist { margin-top: 20px; margin-bottom: 24px; }
.section--dark .two-col__prose p { color: rgba(255,255,255,0.78); }

/* === CHECKLIST === */
.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) { .checklist--2col { grid-template-columns: repeat(2, 1fr); gap: 12px 32px; } }
.checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--body);
}
.section--dark .checklist li { color: rgba(255,255,255,0.85); }
.checklist li::before {
  content: '';
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background: var(--gold-tint);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12.5l4.5 4.5L19 7' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/14px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12.5l4.5 4.5L19 7' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/14px no-repeat;
  border-radius: 50%;
  background-color: var(--gold-tint);
  position: relative;
}
.checklist li {
  position: relative;
}
.checklist li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='%23D0AD6D' opacity='0.2'/><path d='M7 12l3 3 7-7' fill='none' stroke='%23B8924E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 22px;
  background-color: transparent;
  -webkit-mask: none;
  mask: none;
}
.section--dark .checklist li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='%23D0AD6D' opacity='0.25'/><path d='M7 12l3 3 7-7' fill='none' stroke='%23E8D4AC' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* === MISSION CARD === */
.mission {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px;
  background: var(--surface-tint);
  border-radius: var(--r-md);
}
@media (min-width: 880px) {
  .mission { grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; }
}
.mission__quote {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.mission__quote em {
  font-style: normal;
  color: var(--gold-active);
  font-weight: 600;
}
.mission__by {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.mission__by strong { display: block; font-weight: 600; font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.mission__by span { font-size: 13px; color: var(--muted); }

/* === TIMELINE === */
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 880px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.timeline__step {
  padding: 28px 24px;
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 240ms var(--ease), transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.timeline__step:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
}
.timeline__year {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  background: var(--gold-tint);
  color: var(--gold-active);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  width: fit-content;
}
.timeline__title { font-size: 17px; font-weight: 600; letter-spacing: -0.3px; color: var(--ink); }
.timeline__body { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* === TEAM === */
.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .team { grid-template-columns: repeat(2, minmax(0, 400px)); justify-content: center; gap: 80px; }
}
.member { display: grid; gap: 20px; align-content: start; }
.member__photo {
  aspect-ratio: 4/5;
  background: var(--surface-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  width: 100%;
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__role {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--gold-active);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (min-width: 720px) {
  .member__role { min-height: 58px; }
}
.member__name { font-size: 24px; font-weight: 700; letter-spacing: -0.6px; color: var(--ink); margin-top: 4px; }
.member__body { font-size: 15px; line-height: 1.55; color: var(--muted); margin-top: 12px; max-width: 36ch; }

/* === TESTIMONIAL === */
.testimonial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px;
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-md);
}
@media (min-width: 880px) { .testimonial { grid-template-columns: 280px 1fr; gap: 48px; align-items: center; } }
.testimonial__photo {
  aspect-ratio: 1/1;
  max-width: 280px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-soft);
}
.testimonial__photo img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__quote {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: var(--ink);
}
.testimonial__source {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.testimonial__source strong { font-weight: 600; }
.testimonial__source span { font-size: 13px; color: var(--muted); }

/* === PRICING PLANS === */
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 880px) { .plans { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.plan {
  padding: 48px 40px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}
@media (max-width: 640px) { .plan { padding: 40px 28px; } }
.plan:hover { border-color: var(--gold); box-shadow: var(--shadow-float); }
.plan--featured {
  background: var(--navy);
  color: var(--on-dark);
  border-color: var(--navy);
  box-shadow: 0 20px 40px rgba(4,18,37,0.15);
}
.plan--featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -14px;
  left: 28px;
  height: 28px;
  padding: 0 14px;
  background: var(--gold);
  color: var(--on-gold);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
}
.plan .uppercase-tag {
  display: inline-block;
  margin-bottom: 28px;
}
.plan__name {
  font-size: clamp(24px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin-bottom: 16px;
}
.plan--featured .plan__name { color: var(--on-dark); }
.plan__intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 0;
}
.plan--featured .plan__intro {
  color: rgba(255,255,255,0.72);
  border-bottom-color: rgba(255,255,255,0.18);
}
.plan__price {
  font-size: clamp(38px, 4.8vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.6px;
  color: var(--ink);
  padding-top: 40px;
  padding-bottom: 0;
  margin-top: 0;
}
.plan--featured .plan__price { color: var(--on-dark); }
.plan__price small {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: normal;
  line-height: 1.5;
}
.plan--featured .plan__price small { color: rgba(255,255,255,0.6); }
.plan__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--hairline);
}
.plan--featured .plan__list { border-top-color: rgba(255,255,255,0.18); }
.plan__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.5;
}
.plan--featured .plan__list li { color: rgba(255,255,255,0.88); }
.plan__list li::before {
  content: '';
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='%23D0AD6D' opacity='0.2'/><path d='M7 12l3 3 7-7' fill='none' stroke='%23B8924E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 22px;
}
.plan--featured .plan__list li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='%23D0AD6D' opacity='0.3'/><path d='M7 12l3 3 7-7' fill='none' stroke='%23E8D4AC' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.plan__note {
  font-size: 13px;
  color: var(--gold-active);
  font-weight: 500;
  padding: 24px 0 0;
  margin-top: 4px;
  line-height: 1.5;
}
.plan--featured .plan__note { color: var(--gold-soft); }
.plan__cta { margin-top: auto; padding-top: 40px; }

/* === ADD-ONS === */
.addons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .addons { grid-template-columns: repeat(3, 1fr); } }
.addon {
  padding: 24px;
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease);
}
.addon:hover { border-color: var(--gold); transform: translateY(-2px); }
.addon__name { font-size: 17px; font-weight: 600; letter-spacing: -0.3px; color: var(--ink); }
.addon__price { font-size: 22px; font-weight: 700; letter-spacing: -0.6px; color: var(--ink); display: flex; align-items: baseline; gap: 8px; }
.addon__price small { font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: normal; }
.addon__body { font-size: 14px; line-height: 1.5; color: var(--muted); }

.addon--wide { grid-column: 1 / -1; display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* === TRANSPARENCY BOX === */
.transparency {
  padding: 40px;
  background: var(--navy);
  color: var(--on-dark);
  border-radius: var(--r-md);
}
.transparency__head { display: grid; gap: 12px; margin-bottom: 32px; }
@media (min-width: 880px) { .transparency__head { grid-template-columns: 1fr 2fr; gap: 48px; } }
.transparency__head .h-md { color: var(--on-dark); }
.transparency__head p { color: rgba(255,255,255,0.72); }
.transparency__list { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 720px) { .transparency__list { grid-template-columns: repeat(3, 1fr); } }
.transparency__item dt {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.transparency__item dt::before {
  content: '✕';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(208,173,109,0.18);
  color: var(--gold);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}
.transparency__item dd { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.5; }

/* === FAQ === */
.faq { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 960px; }
.faq details { border-top: 1px solid var(--hairline); padding: 20px 0; }
.faq details:last-of-type { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--ink);
  padding-right: 4px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-active);
  line-height: 1;
  transition: transform 280ms var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__body {
  padding-top: 14px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}
.faq__body p + p { margin-top: 12px; }

/* === CTA BANNER === */
.cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}
@media (min-width: 880px) { .cta { grid-template-columns: 1.4fr 1fr; gap: 64px; } }
.cta__display {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--on-dark);
}
.cta__display em { font-style: normal; color: var(--gold); }
.cta__panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
}
.cta__row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding: 14px 0;
  align-items: baseline;
}
.cta__row + .cta__row { border-top: 1px solid rgba(255,255,255,0.12); }
.cta__row dt { font-size: 13px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.cta__row dd { font-size: 16px; font-weight: 500; color: var(--on-dark); }
.cta__row a { transition: color 200ms var(--ease); }
.cta__row a:hover { color: var(--gold); }
.cta__actions { margin-top: 16px; padding-top: 4px; }

/* === CONTACT CARDS === */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  padding: 28px 24px;
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-float); }
.contact-card__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-tint);
  color: var(--gold-active);
  border-radius: 50%;
  font-size: 18px;
  margin-bottom: 6px;
}
.contact-card__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-active);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-card__value { font-size: 18px; font-weight: 600; letter-spacing: -0.2px; color: var(--ink); }
.contact-card__sub { font-size: 13px; color: var(--muted); }

/* === FORM === */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 880px) { .form-wrap { grid-template-columns: 1fr 1.4fr; gap: 64px; } }
.form-aside p { color: var(--body); margin-bottom: 16px; line-height: 1.55; }
.form-aside__tips { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.form-aside__tip {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-md);
}
.form-aside__tip-icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-tint);
  color: var(--gold-active);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
}
.form-aside__tip strong { display: block; font-weight: 600; margin-bottom: 4px; font-size: 15px; color: var(--ink); }
.form-aside__tip span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.form-aside__tip a { color: var(--gold-active); border-bottom: 1px solid currentColor; }

.form {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__row { display: flex; flex-direction: column; gap: 8px; }
.form__row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.form__row input,
.form__row textarea,
.form__row select {
  font: inherit;
  font-size: 15px;
  width: 100%;
  height: 56px;
  padding: 14px 16px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  color: var(--ink);
  transition: border-color 200ms var(--ease);
}
.form__row textarea { height: auto; min-height: 140px; line-height: 1.5; resize: vertical; }
.form__row input:focus,
.form__row textarea:focus,
.form__row select:focus {
  outline: none;
  border-color: var(--ink);
  border-width: 2px;
  padding: 13px 15px;
}
.form__cols { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .form__cols { grid-template-columns: 1fr 1fr; } }
.form__submit { margin-top: 8px; align-self: flex-start; }
.form__legal { font-size: 12px; color: var(--muted); line-height: 1.5; }
.form__legal a { text-decoration: underline; }

/* === PARTNERS === */
.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.partner {
  height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.partner:hover { border-color: var(--gold); color: var(--ink); }

/* === FOOTER === */
.foot {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px) { .foot__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }
.foot__brand { display: inline-block; line-height: 0; margin-bottom: 16px; }
.foot__logo { height: 44px; width: auto; display: block; }
.foot__intro { font-size: 14px; line-height: 1.5; max-width: 32ch; }
.foot__col h6 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--on-dark);
  margin-bottom: 16px;
}
.foot__col ul { display: flex; flex-direction: column; gap: 10px; }
.foot__col a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 200ms var(--ease); }
.foot__col a:hover { color: var(--on-dark); }
.foot__sig {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.stagger.is-in > * { opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(1) { transition-delay: 40ms; }
.stagger.is-in > *:nth-child(2) { transition-delay: 110ms; }
.stagger.is-in > *:nth-child(3) { transition-delay: 180ms; }
.stagger.is-in > *:nth-child(4) { transition-delay: 250ms; }
.stagger.is-in > *:nth-child(5) { transition-delay: 320ms; }
.stagger.is-in > *:nth-child(6) { transition-delay: 390ms; }
.stagger.is-in > *:nth-child(7) { transition-delay: 460ms; }
.stagger.is-in > *:nth-child(8) { transition-delay: 530ms; }

.parallax {
  will-change: transform;
  transition: transform 60ms linear;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === TOUCH DEVICES: disable hover-transforms to avoid sticky hover & repaint stutter === */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .property-card:hover,
  .value:hover,
  .guarantee:hover,
  .timeline__step:hover,
  .contact-card:hover,
  .addon:hover,
  .metric:hover,
  .plan:hover,
  .partner:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  .service-card:hover .service-card__media img,
  .property-card:hover .property-card__media img {
    transform: none !important;
  }
  .btn:hover, .nav__cta:hover { transform: none !important; }
}

/* === GUARANTEES (small boxes) === */
.guarantees {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .guarantees { grid-template-columns: repeat(3, 1fr); } }
.guarantee {
  padding: 24px;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.guarantee:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(4, 18, 37, 0.18);
}
.guarantee__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(208, 173, 109, 0.2);
  color: var(--gold);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.guarantee__title { font-size: 17px; font-weight: 600; letter-spacing: -0.3px; color: var(--on-dark); }
.guarantee__body { font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.72); }

/* === GLOBAL: prevent letter-spacing cascading into nested small/labels === */
.plan__price small,
.addon__price small,
.service-card__price small,
.metric__value .unit + small,
.stat__sub,
.metric__tag,
.metric__body,
.plan__intro,
.plan__list li,
.plan__note,
.addon__body,
.service-card__desc,
.hero__subline,
.cta__row dd,
.cta__row dt,
.foot__sig,
.foot__intro,
.foot__col a,
.body-md, .body-sm, .caption, .caption-sm {
  letter-spacing: normal;
}

/* === HELPERS === */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 32px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
.mb-xl { margin-bottom: 32px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mt-xl { margin-top: 32px; }
.text-center { text-align: center; }

/* Legal pages */
.legal-text { max-width: 720px; overflow-wrap: break-word; word-break: break-word; }
.legal-text h2 { font-size: 20px; margin: 40px 0 12px; overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
.legal-text h3 { font-size: 17px; margin: 32px 0 8px; overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
.legal-text h4 { font-size: 16px; margin: 24px 0 8px; }
.legal-text p { font-size: 15px; line-height: 1.7; color: var(--text); margin: 0 0 16px; }
.legal-text a { color: var(--gold); text-decoration: underline; word-break: break-all; }
.legal-text ul, .legal-text ol { margin: 0 0 16px; padding-left: 20px; }
.legal-text li { font-size: 15px; line-height: 1.7; margin-bottom: 4px; }
