/* ============================================
   SOKOPP & VINZELBERG PROPERTIES LLC
   Premium Luxury Real Estate Website
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* --- CSS Variables --- */
:root {
  --color-primary: #0a0a0a;
  --color-secondary: #1a1a1a;
  --color-accent: #c9a96e;
  --color-accent-light: #dfc08a;
  --color-accent-dark: #a68844;
  --color-accent-glow: rgba(201, 169, 110, 0.07);
  --color-bg: #fcfcfb;
  --color-bg-warm: #f4f3f0;
  --color-bg-cream: #eeedea;
  --color-bg-dark: #0c0c0c;
  --color-bg-dark-secondary: #131313;
  --color-text: #111111;
  --color-text-secondary: #4a4a4a;
  --color-text-muted: #7a7a7a;
  --color-text-inverse: #f0ede8;
  --color-border: #dddbd6;
  --color-border-light: #e8e6e2;
  --color-border-dark: rgba(255,255,255,0.08);
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1240px;
  --max-width-narrow: 900px;
  --nav-height: 100px;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.4s var(--ease-out);
  --transition-slow: 0.7s var(--ease-smooth);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) transparent;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 3px; }

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol { list-style: none; }

::selection {
  background: var(--color-accent);
  color: #fff;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-block;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: 8rem 0;
  position: relative;
}

/* Kompakte Section für Service-Akkordeon-Blöcke */
.section--service {
  padding: 1rem 0;
}

.section--dark {
  background: linear-gradient(135deg, #141414 0%, #0e0e0e 50%, #121212 100%);
  color: var(--color-text-inverse);
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
}

.section--dark p { color: var(--color-text-muted); }

.section--warm {
  background: var(--color-bg-warm);
  position: relative;
}

.section--warm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.25;
}

.section--cream {
  background: var(--color-bg-cream);
  position: relative;
}

.section--cream::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.25;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Nav on hero (white text for dark background) */
.nav__logo {
  color: #fff;
}

.nav__logo img {
  filter: brightness(0) invert(1);
}

.nav__links a {
  color: rgba(255, 255, 255, 0.8);
}

.nav__links a:hover,
.nav__links a.active {
  color: #fff;
}

.nav__cta {
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
}

.nav__cta:hover {
  background: #fff !important;
  color: var(--color-primary) !important;
  border-color: #fff !important;
}

.nav__hamburger span {
  background: #fff;
}

/* Nav on dark background — white text */
.nav--on-dark .nav__logo img { filter: brightness(0) invert(1); }
.nav--on-dark .nav__links a { color: rgba(255, 255, 255, 0.85); }
.nav--on-dark .nav__links a:hover,
.nav--on-dark .nav__links a.active { color: #fff; }
.nav--on-dark .nav__cta { border-color: rgba(255,255,255,0.4) !important; color: #fff !important; }
.nav--on-dark .nav__hamburger span { background: #fff; }

/* Nav on light background — dark text */
.nav--on-light .nav__logo img { filter: none; }
.nav--on-light .nav__links a { color: var(--color-text-secondary); }
.nav--on-light .nav__links a:hover,
.nav--on-light .nav__links a.active { color: var(--color-text); }
.nav--on-light .nav__cta { border-color: var(--color-primary) !important; color: var(--color-primary) !important; }
.nav--on-light .nav__hamburger span { background: var(--color-primary); }

/* Nav hover effect – slightly more opaque on hover */
.nav:hover {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
}

/* Nav scrolled (dark text for light background) */
.nav.scrolled {
  background: rgba(252, 252, 251, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(201, 169, 110, 0.12);
}

.nav.scrolled:hover {
  background: rgba(252, 252, 251, 0.99);
}

.nav.scrolled .nav__logo {
  color: var(--color-primary);
}

.nav.scrolled .nav__logo img {
  filter: none;
}

.nav.scrolled .nav__links a {
  color: var(--color-text-secondary);
}

.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links a.active {
  color: var(--color-text);
}

.nav.scrolled .nav__cta {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
}

.nav.scrolled .nav__cta:hover {
  background: var(--color-primary) !important;
  color: #fff !important;
}

.nav.scrolled .nav__hamburger span {
  background: var(--color-primary);
}

/* Nav on light pages (subpages) */
.nav--light .nav__logo { color: var(--color-primary); }
.nav--light .nav__logo img { filter: none; }
.nav--light .nav__links a { color: var(--color-text-secondary); }
.nav--light .nav__links a:hover,
.nav--light .nav__links a.active { color: var(--color-text); }
.nav--light .nav__cta { border-color: var(--color-primary) !important; color: var(--color-primary) !important; }
.nav--light .nav__cta:hover { background: var(--color-primary) !important; color: #fff !important; }
.nav--light .nav__hamburger span { background: var(--color-primary); }
.nav--light:hover { background: rgba(252, 252, 251, 0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }

.nav__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 80px;
  width: auto;
  transition: var(--transition);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
  position: relative;
  padding: 0.2rem 0;
  transition: var(--transition);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: var(--transition);
}

.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta {
  padding: 0.6rem 1.6rem !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  transition: var(--transition) !important;
}

.nav__cta::after { display: none !important; }

.nav__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  flex-shrink: 0;
}
.nav__whatsapp svg { width: 20px; height: 20px; }
.nav__whatsapp:hover { color: #25D366; }
.nav.scrolled .nav__whatsapp { color: var(--color-text-secondary); }
.nav.scrolled .nav__whatsapp:hover { color: #25D366; }
.nav--light .nav__whatsapp { color: var(--color-text-secondary); }
.nav--light .nav__whatsapp:hover { color: #25D366; }

/* Mobile Nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  transition: var(--transition);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(254, 254, 254, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-slow);
}

.nav__mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
}

.nav__mobile-menu a:hover { color: var(--color-accent); }

/* ============================================
   HERO SECTION - Fullscreen Cinematic
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.hero--subpage {
  min-height: 85vh;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8rem;
}

.hero--subpage .hero__center {
  margin-right: 0;
  max-width: 700px;
  align-items: center;
  text-align: center;
}

.hero--subpage .hero__bg img {
  object-position: center 65%;
}

/* Scroll indicator only on main hero, hide on subpages */
.hero--subpage .hero__scroll-indicator {
  display: none;
}

/* Exception: show scroll indicator on contact page */
.hero--subpage.hero--with-scroll .hero__scroll-indicator {
  display: flex;
}

/* Blurred background image for subpage heroes */
.hero__bg--blurred img {
  filter: blur(2px) brightness(0.82);
  transform: scale(1.06);
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.08) 0%,
    rgba(10, 10, 10, 0.10) 35%,
    rgba(10, 10, 10, 0.30) 55%,
    rgba(10, 10, 10, 0.65) 75%,
    rgba(10, 10, 10, 0.75) 100%
  );
}

.hero__center {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  padding: 2.5rem 3rem;
  margin-right: 6%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(10, 10, 10, 0.10);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 3px solid rgba(201, 169, 110, 0.4);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

.hero__logo {
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) forwards 0.1s;
}

.hero__logo img {
  height: 320px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1) drop-shadow(0 4px 30px rgba(0, 0, 0, 0.3));
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) forwards 0.3s;
}

.hero__badge .dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__badge span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero h1 {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease-out) forwards 0.5s;
  line-height: 1.12;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  font-style: italic;
  color: var(--color-accent-light);
}

.hero__text {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) forwards 0.7s;
}

.hero__actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) forwards 0.9s;
}

.hero__actions .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.btn--outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline-light:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn--outline-dark:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
  transform: translateY(-2px);
  background: rgba(201, 169, 110, 0.06);
}

.btn--large { padding: 0.85rem 2.8rem; font-size: 0.75rem; letter-spacing: 0.16em; }

/* Gradient fade at bottom of hero into next section */
.hero:not(.hero--subpage)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,10,10,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) forwards 1.2s;
}

/* Ensure hero center box doesn't overlap scroll indicator */
.hero:not(.hero--subpage) .hero__center {
  margin-bottom: 7rem;
  margin-top: 2rem;
}

.hero__scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.38);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent-light);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: 0.6s;
}

.btn--primary:hover::before { left: 100%; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(0,0,0,0.15); }

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

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

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

.btn--accent:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
}

.btn--white {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.btn--large { padding: 0.85rem 2.8rem; font-size: 0.75rem; letter-spacing: 0.16em; }

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

.btn--accent-outline:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 169, 110, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  padding: 0;
  letter-spacing: 0.1em;
}

.btn--ghost:hover { gap: 1rem; }

.btn svg {
  width: 15px;
  height: 15px;
  transition: var(--transition);
}

.btn:hover svg { transform: translateX(3px); }

/* ============================================
   TICKER / MARQUEE
   ============================================ */
.ticker {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  overflow: hidden;
  background: var(--color-bg);
}

.ticker__inner {
  display: flex;
  animation: scroll-left 18s linear infinite;
  white-space: nowrap;
}

.ticker__item {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-muted);
  padding: 0 2rem;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.ticker__item .sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
  margin: 0 0.8rem;
  vertical-align: middle;
  opacity: 0.6;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  margin-bottom: 4.5rem;
}

.section-header .label { margin-bottom: 1.2rem; }

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

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

.section-header--center { text-align: center; }
.section-header--center p { margin: 0 auto; }

/* ============================================
   PHILOSOPHY / VALUE CARDS
   ============================================ */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.philosophy-card {
  padding: 2.8rem 2.2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.section--warm .philosophy-card { background: rgba(255, 255, 255, 0.8); }

.philosophy-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: 0 0 16px 16px;
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}

.philosophy-card:hover::after { transform: scaleX(1); }

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 169, 110, 0.15);
}

.philosophy-card__stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.philosophy-grid--wide {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .philosophy-grid--wide { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .philosophy-grid--wide { grid-template-columns: 1fr; }
}

.philosophy-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-glow);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 12px;
  margin-bottom: 1.8rem;
}

.philosophy-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  stroke-width: 1.5;
}

.philosophy-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.philosophy-card p {
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ============================================
   STATS
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
}

.stat {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--color-border-dark);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 0.6rem;
  color: var(--color-accent-light);
  font-weight: 400;
}

.stat__label {
  font-size: 0.75rem;
  color: rgba(201,169,110,0.55);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.team-card { position: relative; }

.team-card__image {
  width: 100%;
  height: 420px;
  overflow: hidden;
  margin-bottom: 1.8rem;
  position: relative;
  border-radius: 16px;
}

.team-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.2) 0%, transparent 40%);
  pointer-events: none;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: filter 0.6s var(--ease-smooth), transform 0.7s var(--ease-smooth);
  filter: grayscale(15%) contrast(1.02);
}

.team-card:hover .team-card__image img {
  transform: scale(1.06);
  filter: blur(2.5px) brightness(0.62) grayscale(0%);
}

/* Hover overlay with name on blur */
.team-card__hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.45s var(--ease-smooth);
  z-index: 3;
  pointer-events: none;
  padding: 2rem;
}

.team-card:hover .team-card__hover-overlay {
  opacity: 1;
}

.team-card__hover-overlay .hover-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: center;
}

.team-card__hover-overlay .hover-role {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  text-align: center;
}

.team-card__hover-overlay .hover-cta {
  margin-top: 1rem;
  padding: 0.55rem 1.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  transition: var(--transition);
  pointer-events: all;
  text-decoration: none;
}

.team-card__hover-overlay .hover-cta:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.team-card__role {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.team-card p { font-size: 0.95rem; }

/* Three-column team grid */
.team-grid--three {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .team-grid--three { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .team-grid--three { grid-template-columns: 1fr; }
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.process-step {
  padding: 2.8rem;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-light));
  border-radius: 16px 0 0 16px;
  transition: var(--transition-slow);
}

.process-step:hover::before { height: 100%; }

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border-color: rgba(201, 169, 110, 0.15);
}

.process-step__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent-light);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

.process-step .label { margin-bottom: 0.6rem; }
.process-step h3 { margin-bottom: 0.8rem; font-size: 1.2rem; }
.process-step p { font-size: 0.92rem; }

.process-step ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step ul li {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  padding-left: 1.2rem;
  position: relative;
}

.process-step ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 1px;
  background: var(--color-accent);
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
  padding: 7rem 0;
  text-align: center;
  position: relative;
}

.quote-section::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 12rem;
  color: var(--color-accent);
  opacity: 0.06;
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.quote-section blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.55;
  max-width: 780px;
  margin: 0 auto;
  color: var(--color-primary);
  font-style: italic;
  font-weight: 400;
}

.quote-section .quote-author {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================
   IMAGE BANNER (3-Column Strip)
   ============================================ */
.image-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.image-banner__item {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/10;
}

.image-banner__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.image-banner__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .image-banner {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .image-banner__item {
    aspect-ratio: 16/9;
  }
}

/* ============================================
   IMAGE MARQUEE (horizontally scrolling strip)
   ============================================ */
.image-marquee {
  overflow: hidden;
  position: relative;
}

.image-marquee__track {
  display: flex;
  gap: 1.2rem;
  animation: image-marquee-scroll 35s linear infinite;
  width: max-content;
}

.image-marquee__track img {
  height: 300px;
  width: auto;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

@keyframes image-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SHOWCASE GALLERY
   ============================================ */
/* Bento Grid Layout */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.8rem;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

/* Bento sizes */
.showcase-item--wide { grid-column: span 2; }
.showcase-item--tall { grid-row: span 2; }
.showcase-item--featured { grid-column: span 2; grid-row: span 2; }

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth), filter 0.7s var(--ease-smooth);
}

.showcase-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.showcase-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
}

.showcase-item:hover .showcase-item__overlay {
  opacity: 1;
}

.showcase-item__overlay span {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .showcase-item--featured { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 0.6rem;
  }

  .showcase-item { border-radius: 14px; }
  .showcase-item--tall { grid-row: span 1; }
  .showcase-item--featured { grid-column: span 2; }

  .showcase-item__overlay {
    opacity: 1;
    padding: 1rem;
  }

  .showcase-item__overlay span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  /* showcase-grid handled by slider above */
}

/* ============================================
   DEVELOPER LOGOS - Running Marquee
   ============================================ */
.developers-marquee {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.developers-marquee::before,
.developers-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.developers-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-warm), transparent);
}

.developers-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-bg-warm), transparent);
}

.section:not(.section--warm) .developers-marquee::before {
  background: linear-gradient(90deg, var(--color-bg), transparent);
}

.section:not(.section--warm) .developers-marquee::after {
  background: linear-gradient(270deg, var(--color-bg), transparent);
}

.developers-marquee__track {
  display: flex;
  align-items: center;
  gap: 5rem;
  animation: marquee-scroll 6s linear infinite;
  width: max-content;
}

.developers-marquee__track img {
  height: 22px;
  max-width: 90px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: brightness(0);
  transition: var(--transition);
  flex-shrink: 0;
}

/* Emaar: 5:1 aspect ratio — etwas mehr max-width erlaubt */
.developers-marquee__track img[alt="Emaar"] {
  height: 18px;
  max-width: 95px;
}

/* DAMAC + Nakheel: quadratische Logos — größer damit optisch gleich wie Emaar/Imtiaz */
.developers-marquee__track img[alt="DAMAC"],
.developers-marquee__track img[alt="Nakheel"] {
  height: 65px;
  max-width: 65px;
}

.developers-marquee__track img:hover {
  opacity: 0.9;
  filter: brightness(0);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* Static fallback */
.developers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.5rem;
  flex-wrap: wrap;
}

.developers img {
  height: 50px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
  border-radius: 8px;
}

.developers img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 9rem 0;
  text-align: center;
  background: #000;
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}

/* Blurred background photo */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/cove-night-skyline.jpg');
  background-size: cover;
  background-position: center center;
  filter: blur(4px) brightness(0.42);
  transform: scale(1.04);
  z-index: 0;
  pointer-events: none;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-section p {
  margin: 0 auto 3.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.cta-section .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* CTA hell/beige ohne Hintergrundbild (z.B. process.html) */
.cta-section--no-bg {
  background: var(--color-bg-cream);
  color: var(--color-text-primary);
}
.cta-section--no-bg::after {
  display: none;
}
.cta-section--no-bg::before {
  display: none;
}
.cta-section--no-bg h2 {
  color: var(--color-text-primary);
}
.cta-section--no-bg p {
  color: var(--color-text-secondary);
}
.cta-section--no-bg .label {
  color: var(--color-accent) !important;
}

/* ============================================
   PAGE HERO (Sub-pages)
   ============================================ */
.page-hero {
  padding: 11rem 0 5rem;
  text-align: center;
  background: var(--color-bg-cream);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border-light);
}

.page-hero .label { margin-bottom: 1.2rem; }
.page-hero h1 { margin-bottom: 1.5rem; }
.page-hero p { margin: 0 auto; font-size: 1.1rem; }

/* ============================================
   ABOUT DETAIL
   ============================================ */
.about-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-detail__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.about-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-slow);
}

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

.about-detail__content h3 { margin-bottom: 1rem; }
.about-detail__content p { margin-bottom: 1.2rem; }

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}

.highlight-list li svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: var(--color-accent);
  margin-top: 3px;
}

/* ============================================
   USP GRID
   ============================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0.5rem 0.5rem 2rem;
  margin: 0 -0.5rem;
}

.usp-item {
  padding: 2.5rem 2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
}

.usp-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-smooth);
  border-radius: 20px 20px 0 0;
}

.usp-item:hover::before {
  transform: scaleX(1);
}

.usp-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
  border-color: rgba(201, 169, 110, 0.18);
}

.usp-item__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-accent);
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
}

.usp-item:hover .usp-item__number {
  opacity: 0.6;
}

.usp-item h4 {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.usp-item p { font-size: 0.9rem; line-height: 1.7; }

/* ============================================
   SERVICE BLOCKS (Leistungen page) - Modern
   ============================================ */
.service-block {
  max-width: 1000px;
  position: relative;
  padding: 3.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  transition: var(--transition);
  overflow: visible;
}

.section--warm .service-block {
  background: rgba(255, 255, 255, 0.9);
}

.section--cream .service-block {
  background: rgba(255, 255, 255, 0.9);
}

.service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-light));
  border-radius: 16px 0 0 16px;
  transition: height 0.6s var(--ease-smooth);
}

.service-block:hover::before {
  height: 100%;
}

.service-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
  border-color: rgba(201, 169, 110, 0.15);
}

.service-block__number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.06;
  pointer-events: none;
}

.service-block__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-block__icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent-glow), rgba(201, 169, 110, 0.12));
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 14px;
  transition: var(--transition);
}

.service-block:hover .service-block__icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.service-block:hover .service-block__icon svg {
  color: #fff;
}

.service-block__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  transition: var(--transition);
}

.service-block__header .label {
  margin-bottom: 0.4rem;
}

.service-block__header h3 {
  font-size: 1.7rem;
  line-height: 1.2;
}

.service-block__content > p {
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.service-block__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-feature {
  padding: 1.8rem 1.5rem;
  background: var(--color-bg-warm);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.section--warm .service-feature { background: var(--color-bg-cream); }
.section--cream .service-feature { background: var(--color-bg-warm); }

.service-feature::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-smooth);
}

.service-feature:hover::after {
  transform: scaleX(1);
}

.service-feature:hover {
  border-color: rgba(201, 169, 110, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.service-feature strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--color-primary);
}

.service-feature span {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .service-block {
    padding: 2rem 1.5rem;
  }

  .service-block__features {
    grid-template-columns: 1fr;
  }

  .service-block__header h3 {
    font-size: 1.3rem;
  }

  .service-block__number {
    font-size: 3.5rem;
  }
}

/* ============================================
   SERVICE BLOCK ACCORDION
   ============================================ */

.service-block--accordion {
  cursor: default;
}

/* Disable default hover lift — only apply when open */
.service-block--accordion:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--color-border-light);
}

.service-block--accordion.open:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
  border-color: rgba(201, 169, 110, 0.15);
}

/* Toggle button */
.service-block__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  gap: 1.5rem;
  text-align: left;
}

.service-block__toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 8px;
}

.service-block--accordion .service-block__header {
  margin-bottom: 0;
  flex: 1;
  pointer-events: none;
}

/* Chevron */
.service-block__chevron {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--color-border);
  transition: transform 0.4s var(--ease-smooth), background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}

.service-block--accordion.open .service-block__chevron {
  transform: rotate(180deg);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.service-block__chevron svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
  transition: color 0.3s;
  pointer-events: none;
}

.service-block--accordion.open .service-block__chevron svg {
  color: #fff;
}

.service-block--accordion:not(.open) .service-block__toggle:hover .service-block__chevron {
  background: rgba(201, 169, 110, 0.1);
  border-color: rgba(201, 169, 110, 0.35);
}

.service-block--accordion:not(.open) .service-block__toggle:hover .service-block__chevron svg {
  color: var(--color-accent);
}

/* Body collapse — JS sets height directly via inline style */
.service-block__body {
  overflow: hidden;
  height: 0;
  transition: height 0.45s var(--ease-smooth), padding-top 0.4s var(--ease-smooth), padding-bottom 0.4s var(--ease-smooth);
  padding-top: 0;
  padding-bottom: 0;
}

.service-block--accordion.open .service-block__body {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  /* height is set by JS to scrollHeight */
}

/* On page load, suppress transition for initially-open block */
.service-block--accordion.open-init .service-block__body {
  transition: none;
}

/* ============================================
   LEISTUNGEN QUOTE (light beige version)
   ============================================ */

.leistungen-quote__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.leistungen-quote__deco {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.leistungen-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-primary);
  font-style: normal;
  letter-spacing: -0.02em;
}

.leistungen-quote__text em {
  font-style: italic;
  color: var(--color-accent-dark);
}

/* ============================================
   SECTION WITH BACKGROUND IMAGE + BLUR
   ============================================ */
.section-bg-hero {
  position: relative;
  padding: 8rem 0 10rem;
}

.section-bg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.section-bg-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: blur(1px) brightness(0.9);
  transform: scale(1.03);
}

.section-bg-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.72) 0%,
    rgba(10, 10, 10, 0.55) 50%,
    rgba(10, 10, 10, 0.45) 100%
  );
  pointer-events: none;
}

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

.section-bg-hero .usp-item {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section-bg-hero .usp-item h4 {
  color: #fff;
}

.section-bg-hero .usp-item p {
  color: rgba(255, 255, 255, 0.75);
}

.section-bg-hero .usp-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(201, 169, 110, 0.35);
}

/* ============================================
   USP SECTION LAYOUT (with visual element)
   ============================================ */
.usp-section-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.usp-visual__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.usp-visual__circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,169,110,0.06), rgba(201,169,110,0.02));
  box-shadow: 0 0 60px rgba(201,169,110,0.08);
  animation: glow-pulse 4s ease infinite;
}

.usp-visual__big {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-accent);
  line-height: 1;
  font-weight: 400;
}

.usp-visual__big sup {
  font-size: 1.5rem;
  vertical-align: super;
}

.usp-visual__sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.6;
  margin-top: 0.3rem;
}

.usp-visual__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.usp-tag {
  padding: 0.4rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-bg);
  transition: var(--transition);
}

.usp-tag--accent {
  border-color: rgba(201,169,110,0.35);
  color: var(--color-accent);
  background: rgba(201,169,110,0.05);
}

.usp-tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.usp-visual__line {
  width: 100%;
  border-top: 1px solid rgba(201,169,110,0.2);
  text-align: center;
  padding-top: 2rem;
  margin-top: 0;
}

.usp-visual__line span {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .usp-section-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================
   FOR WHOM GRID (process.html)
   ============================================ */
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.forwhom-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.2rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.forwhom-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 169, 110, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.forwhom-card__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 14px;
  transition: var(--transition);
}

.forwhom-card:hover .forwhom-card__icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.forwhom-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent-light);
  transition: var(--transition);
}

.forwhom-card:hover .forwhom-card__icon svg {
  color: #fff;
}

.forwhom-card__content h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.forwhom-card__content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: none;
}

@media (max-width: 768px) {
  .forwhom-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ABOUT QUOTE SECTION (creative)
   ============================================ */
.about-quote-section {
  padding: 4rem 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

/* Blurred background photo — same technique as subpage hero */
.about-quote-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-quote-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: blur(4px) brightness(0.42);
  transform: scale(1.04);
}

/* Gold glow stays on top */
.about-quote-section::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,169,110,0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Content must be above the blurred bg */
.about-quote-section .container {
  position: relative;
  z-index: 2;
}

.about-quote-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.about-quote__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.about-quote__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.4));
  max-width: 120px;
}

.about-quote__icon {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  opacity: 0.6;
  flex-shrink: 0;
}

.about-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

.about-quote__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.about-quote__author-line {
  width: 32px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
}

.about-quote__author {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  opacity: 0.8;
}

.about-quote__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Quote highlight buzzwords */
.quote-highlight {
  color: var(--color-accent-light);
  font-style: normal;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-trigger {
  cursor: zoom-in;
  display: block;
  position: relative;
}

.lightbox-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s var(--ease-smooth);
  pointer-events: none;
}

.lightbox-trigger:hover::after {
  background: rgba(0,0,0,0.18);
}

.lightbox-trigger__icon {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
  z-index: 2;
  pointer-events: none;
}

.lightbox-trigger__icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
  stroke-width: 1.5;
}

.lightbox-trigger:hover .lightbox-trigger__icon {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox Overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 9, 7, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay__img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  object-fit: contain;
  cursor: default;
  animation: lightboxIn 0.35s var(--ease-bounce) forwards;
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-overlay__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: #fff;
}

.lightbox-overlay__close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.08);
}

.lightbox-overlay__close svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

/* ============================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================ */
.legal-content h3 {
  margin-bottom: 0.5rem;
}

.legal-content h4 {
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
}

.legal-content p {
  margin-bottom: 1rem;
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content .divider {
  margin-bottom: 2rem;
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: 2px;
  margin: 1.5rem 0;
}

.divider--center { margin: 2.5rem auto; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info__item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__item span {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.contact-info__item a { color: var(--color-accent); }
.contact-info__item a:hover { color: var(--color-accent-dark); }

.calendly-embed {
  min-height: 650px;
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.calendly-placeholder { text-align: center; padding: 3rem; }

.calendly-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.calendly-placeholder h4 { margin-bottom: 0.8rem; }
.calendly-placeholder p { margin: 0 auto; font-size: 0.9rem; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 5rem 0 2.5rem;
  background: linear-gradient(160deg, #111111 0%, #0c0c0c 60%, #101010 100%);
  color: var(--color-text-inverse);
  border-top: 1px solid rgba(201,169,110,0.15);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-accent-light), var(--color-accent), transparent);
  opacity: 0.5;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand img {
  height: 70px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(201,169,110,0.45);
  max-width: 340px;
  line-height: 1.7;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.5);
  margin-bottom: 1.5rem;
}

.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(201,169,110,0.6);
  margin-bottom: 0.7rem;
}

.footer__col a:hover { color: var(--color-accent-light); }

.footer__bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,169,110,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(201,169,110,0.35);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.75rem;
  color: rgba(201,169,110,0.4);
  transition: var(--transition);
}

.footer__legal a:hover {
  color: var(--color-accent-light);
}

/* ============================================
   SECTION IMAGE HEROES (Parallax-like banners)
   ============================================ */
.section-hero-image {
  position: relative;
  height: 55vh;
  min-height: 350px;
  overflow: hidden;
}

.section-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.section-hero-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.15) 0%,
    rgba(10, 10, 10, 0.05) 40%,
    rgba(10, 10, 10, 0.05) 60%,
    rgba(10, 10, 10, 0.20) 100%
  );
  pointer-events: none;
}

@media (max-width: 768px) {
  .section-hero-image {
    height: 40vh;
    min-height: 250px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 110, 0.1); }
  50% { box-shadow: 0 0 40px rgba(201, 169, 110, 0.2); }
}

@keyframes line-grow {
  from { width: 0; }
  to { width: 50px; }
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.scale-in.visible { opacity: 1; transform: scale(1); }

/* Staggered delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Gold shimmer accent line */
.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 1.2rem;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light), var(--color-accent));
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
}

.section-header--center h2::after {
  margin-left: auto;
  margin-right: auto;
}

/* Hover lift for cards */
.philosophy-card,
.process-step,
.service-block,
.usp-item {
  will-change: transform;
}

/* Subtle gold glow on dark section stats */
.stat:hover .stat__number {
  text-shadow: 0 0 30px rgba(201, 169, 110, 0.35);
  transition: text-shadow 0.4s ease;
}

/* Parallax-ready helper */
[data-parallax] {
  will-change: transform;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { justify-content: center; text-align: center; }
  .hero__center {
    margin-right: 0;
    max-width: 700px;
    align-items: center;
    background: rgba(10, 10, 10, 0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .hero__actions { justify-content: center; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.25) 40%, rgba(10,10,10,0.25) 60%, rgba(10,10,10,0.55) 100%) !important;
  }

  .hero__logo img { height: 240px; }
  .hero__scroll-indicator { display: flex; }

  .philosophy-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .process-grid { grid-template-columns: 1fr; }
  .team-grid { gap: 2.5rem; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .about-detail { gap: 3rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .section { padding: 5rem 0; }
  .container { padding: 0 1.5rem; }

  .hero__logo img { height: 180px; }
  .hero__logo { margin-bottom: 2.5rem; }
  .hero__actions { flex-direction: column; align-items: center; }

  .team-grid { grid-template-columns: 1fr; }
  .about-detail { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-section .btn-group { flex-direction: column; }
  .usp-grid { grid-template-columns: 1fr; }

  .developers { gap: 2.5rem; }
  .developers img { height: 35px; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.8rem; text-align: center; }

  .page-hero { padding: 8rem 0 4rem; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat::after { display: none; }

  /* Ticker schneller auf Mobile */
  .ticker__inner { animation-duration: 8s; }

  /* Scroll-Indikator auf allen Subpages anzeigen */
  .hero--subpage .hero__scroll-indicator { display: flex; }

  /* Headline auf Subpages weiter unten auf Mobile */
  .hero--subpage .hero__center { margin-top: auto; padding-bottom: 5rem; }

  /* Showcase → Fade-Slider */
  .showcase-grid {
    display: block;
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
  }
  .showcase-grid .showcase-item {
    position: absolute;
    inset: 0;
    height: 300px;
    opacity: 0;
    transition: opacity 0.8s ease;
    border-radius: 0;
    min-width: unset;
  }
  .showcase-grid .showcase-item.is-active { opacity: 1; }
  .showcase-grid .showcase-item--wide,
  .showcase-grid .showcase-item--featured,
  .showcase-grid .showcase-item--tall { grid-column: unset; grid-row: unset; }

  /* Dots */
  .slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
  .slider-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(201,169,110,0.3); transition: all 0.3s; cursor: pointer; }
  .slider-dot.active { background: var(--color-accent); width: 18px; border-radius: 3px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .hero__logo img { height: 130px; }
  .philosophy-card { padding: 2rem 1.5rem; }
  .process-step { padding: 2rem 1.5rem; }
  .stats-bar { grid-template-columns: 1fr; }
}
