/* Local Web Fonts to satisfy GDPR / DSGVO */
@font-face {
  font-family: 'Belleza';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/belleza-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-italic-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-normal-latin.woff2') format('woff2');
}

/* ==========================================================================
   DESIGN SYSTEM TOKENS & RESET
   ========================================================================== */
:root {
  /* Colors from user CI (2026) */
  --primary-dark: #353621;
  --primary-dark-rgb: 53, 54, 33;
  --moss: #494e37;
  --sage: #939474;
  --sage-rgb: 147, 148, 116;
  --beige: #b0a37f;
  --cream-light: #ecece3;
  --cream-dark: #deddd2; /* Slightly darker cream for section contrast */
  
  /* Theme tokens mapping */
  --espresso: var(--primary-dark);
  --espresso-rgb: var(--primary-dark-rgb);
  --deep-olive: var(--moss);
  --champagne: var(--beige);
  --porcelain: var(--cream-dark);
  --white: var(--cream-light); /* Start with soft cream instead of stark white */
  
  --ink: var(--espresso);
  --muted: rgba(var(--espresso-rgb), 0.68);
  --line: rgba(var(--espresso-rgb), 0.12);
  --glass-bg: rgba(236, 236, 227, 0.85); /* cream-light with opacity */
  --glass-border: rgba(var(--espresso-rgb), 0.06);
  
  /* Fonts */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Belleza", Arial, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 90px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--porcelain);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--espresso);
}

p {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

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

.kicker {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1rem;
  display: block;
}

.title-large {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-medium {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

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

.section-intro {
  max-width: 720px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ==========================================================================
   BUTTONS & LINKS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--espresso);
  color: var(--porcelain);
}

.btn-primary:hover {
  background-color: var(--moss);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(27, 18, 12, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}

.btn-secondary:hover {
  background-color: var(--espresso);
  color: var(--porcelain);
  transform: translateY(-2px);
}

.btn-text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.btn-text-arrow::after {
  content: "→";
  transition: transform 0.3s ease;
}

.btn-text-arrow:hover {
  color: var(--moss);
  border-color: var(--moss);
}

.btn-text-arrow:hover::after {
  transform: translateX(6px);
}

/* ==========================================================================
   LAYOUT SECTIONS
   ========================================================================== */
.section {
  padding: clamp(4.5rem, 10vw, 8.5rem) 5%;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

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

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

.bg-sage {
  background-color: var(--sage);
  color: var(--espresso);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  padding: 0 5%;
}

.navbar.scrolled {
  height: 75px;
  background-color: rgba(236, 236, 227, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: block;
  height: 40px;
  width: 140px;
  background: var(--logo, url("../assets/logo.png")) left center / contain no-repeat;
  transition: var(--transition-medium);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.25rem;
}

.mobile-menu-card-item {
  display: none;
}

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--moss);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--moss);
}

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

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--espresso);
  transition: var(--transition-smooth);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 750px;
  position: relative;
  display: flex;
  align-items: stretch;
  color: var(--porcelain);
  overflow: hidden;
  background-color: var(--espresso);
  padding: 0 5%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 70%),
    url("../assets/images/hero_interior.webp?v=1.0") center / cover no-repeat;
  z-index: 1;
  transform: scale(1.03);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero:hover .hero-bg {
  transform: scale(1.0);
}

.hero-container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  text-align: left;
  margin: 0;
}

.hero-content .kicker {
  color: var(--porcelain);
  opacity: 0.85;
  margin-left: 3px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-family: var(--font-body);
  max-width: 600px;
  margin: 0 0 2.5rem;
  opacity: 0.9;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  left: auto;
  transform: none;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.75;
  transition: var(--transition-fast);
}

.hero-scroll:hover {
  opacity: 1;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background-color: var(--porcelain);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sage);
  animation: scroll-dot 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top;
}

@keyframes scroll-dot {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ==========================================================================
   PHILOSOPHY / INTRO
   ========================================================================== */
.philosophie-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}

.philosophie-text {
  padding-right: 5%;
}

.philosophie-text p {
  margin-bottom: 1.5rem;
}

.philosophie-text p:last-child {
  margin-bottom: 2rem;
}

.philosophie-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.philosophie-image {
  width: 100%;
  height: 560px;
  background: url("../assets/images/portfolio_living.webp?v=1.0") center / cover no-repeat;
  transition: var(--transition-smooth);
}

.philosophie-image-wrap:hover .philosophie-image {
  transform: scale(1.04);
}

/* ==========================================================================
   SIGNATURE SERVICES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* Green filter overlay - double opacity (9%), fades out completely on hover */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(53, 54, 33, 0.09);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 0;
}

/* Watermark background image - becomes clearer (16%) and zooms slightly on hover */
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.04;
  mix-blend-mode: multiply;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  pointer-events: none;
}

.service-card:hover .service-card-bg {
  opacity: 0.16;
  transform: scale(1.06);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--sage-rgb), 0.45);
  box-shadow: 0 25px 50px rgba(27, 18, 12, 0.06);
}

.service-header {
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
}

.service-header small {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  display: block;
  margin-bottom: 0.5rem;
}

.service-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.service-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.service-features li {
  font-size: 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(var(--espresso-rgb), 0.06);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(var(--espresso-rgb), 0.85);
}

.service-features li::before {
  content: "✓";
  color: var(--moss);
}

.service-features li.emphasis::before {
  content: "✦";
  color: var(--champagne);
}

.service-features li.emphasis {
  font-weight: 500;
  color: var(--espresso);
}

.service-price {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.service-price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 500;
}

.service-price span {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
  display: block;
  margin-top: 0.25rem;
}

/* ==========================================================================
   INTERACTIVE QUIZ (SERVICE FINDER)
   ========================================================================== */
.quiz-section {
  background: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E"),
    radial-gradient(circle at center, var(--moss) 0%, var(--primary-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.quiz-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(176, 163, 127, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.quiz-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(147, 148, 116, 0.15) 0%, transparent 75%);
  pointer-events: none;
}

.quiz-section h2, 
.quiz-section h3, 
.quiz-section .kicker,
.quiz-section .quiz-question {
  color: var(--white) !important;
}

.quiz-container {
  max-width: 750px;
  margin: 0 auto;
  background: rgba(236, 236, 227, 0.03);
  border: 1px solid rgba(176, 163, 127, 0.25);
  border-radius: 12px;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

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

.quiz-progress-bar {
  height: 2px;
  width: 100%;
  background-color: rgba(236, 236, 227, 0.1);
  margin-bottom: 2.5rem;
  position: relative;
  border-radius: 2px;
}

.quiz-progress-fill {
  height: 100%;
  width: 33.33%;
  background-color: var(--champagne);
  transition: var(--transition-medium);
  border-radius: 2px;
}

.quiz-question {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 2rem;
  line-height: 1.25;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.quiz-option {
  background: rgba(236, 236, 227, 0.03);
  border: 1px solid rgba(236, 236, 227, 0.1);
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white) !important;
}

.quiz-option span {
  color: var(--white);
  font-size: 1rem;
}

.quiz-option:hover {
  background: rgba(236, 236, 227, 0.08);
  border-color: var(--champagne);
}

.quiz-option.selected {
  background: rgba(176, 163, 127, 0.18);
  border-color: var(--champagne);
  color: var(--white) !important;
}

.quiz-option::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid rgba(236, 236, 227, 0.3);
  border-radius: 50%;
  display: inline-block;
  transition: var(--transition-fast);
}

.quiz-option.selected::after {
  background-color: var(--champagne);
  border-color: var(--champagne);
  box-shadow: inset 0 0 0 3px var(--primary-dark);
}

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

.quiz-result-card {
  text-align: center;
  padding: 1rem 0;
}

.quiz-result-card h3 {
  color: var(--white) !important;
  font-size: 2.2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.quiz-result-desc {
  max-width: 500px;
  margin: 0 auto 2rem;
  color: var(--white);
  opacity: 0.85;
}

/* ==========================================================================
   PORTFOLIO SHOWCASE
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  margin-top: 3.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.portfolio-item-large {
  grid-row: span 2;
  height: 680px;
}

.portfolio-item-medium {
  height: 320px;
}

.portfolio-item-small {
  height: 320px;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--espresso-rgb), 0.75) 0%, rgba(var(--espresso-rgb), 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: var(--porcelain);
  opacity: 0;
  transition: var(--transition-medium);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.portfolio-overlay span {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--espresso);
  cursor: pointer;
  padding: 0.5rem 0;
}

.faq-chevron {
  font-size: 1.2rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--sage);
}

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

.faq-answer p {
  padding: 1rem 0;
  color: var(--muted);
  font-size: 1rem;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

/* ==========================================================================
   CONTACT FUNNEL
   ========================================================================== */
#kontakt.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 5%;
}

.contact-funnel-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: flex-start;
}

.contact-info {
  padding-right: 5%;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 2.5rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-details strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.25rem;
}

.funnel-container {
  background-color: var(--porcelain);
  border: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 8px;
}

.funnel-step {
  display: none;
}

.funnel-step.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.funnel-step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--espresso);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--espresso);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(var(--sage-rgb), 0.1);
}

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

.form-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-option-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  padding: 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-option-card:hover {
  border-color: var(--sage);
}

.form-option-card.selected {
  background-color: rgba(var(--sage-rgb), 0.08);
  border-color: var(--sage);
}

.form-option-card strong {
  font-size: 1rem;
}

.form-option-card span {
  font-size: 0.75rem;
  color: var(--muted);
}

.funnel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.funnel-progress {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--espresso);
  color: var(--porcelain);
  padding: 5rem 5% 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.7fr;
  gap: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 4rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .nav-logo {
  background-image: var(--logo-white, url("../assets/signet.png"));
  height: 50px;
  width: 50px;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.75;
  max-width: 280px;
  text-align: center;
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--porcelain);
  opacity: 0.75;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--sage);
}

.footer-contact-info {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a:hover {
  color: var(--sage);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLING)
   ========================================================================== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .philosophie-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .philosophie-text {
    padding-right: 0;
  }
  
  .philosophie-image {
    height: 400px;
  }
  
  .contact-funnel-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    padding-right: 0;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 75px;
  }
  
  .hero-scroll {
    display: none;
  }
  
  .hero-container {
    align-items: center !important;
  }

  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    flex-direction: column;
    padding: 2.5rem 5% 1.5rem;
    gap: 1.75rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    overflow-y: auto;
    display: flex;
    align-items: center;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Visitenkarte im Burger-Menü */
  .mobile-menu-card-item {
    display: block;
    margin-top: auto;
    width: 100%;
    max-width: 290px;
    padding-bottom: 1rem;
    list-style: none;
  }

  .contact-card-mini {
    padding: 0.85rem !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    border: 1px solid var(--line) !important;
    background-color: var(--porcelain) !important;
  }
  
  .contact-card-mini .contact-card-header {
    gap: 0.6rem !important;
    margin-bottom: 0.6rem !important;
    align-items: center !important;
    display: flex;
  }
  
  .contact-card-mini .contact-card-avatar {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50%;
  }
  
  .contact-card-mini .contact-card-brand h3 {
    font-size: 0.85rem !important;
    margin-bottom: 0.05rem !important;
    font-family: var(--font-display) !important;
    font-weight: 500 !important;
    color: var(--espresso) !important;
  }
  
  .contact-card-mini .contact-card-brand span {
    font-size: 0.65rem !important;
    opacity: 0.8;
    color: var(--muted) !important;
  }
  
  .contact-card-mini .contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem !important;
  }
  
  .contact-card-mini .contact-card-value {
    font-size: 0.7rem !important;
    color: var(--moss) !important;
    font-family: var(--font-body) !important;
    text-decoration: none !important;
  }

  /* Zentrierter Footer auf Mobilgeräten */
  .footer {
    text-align: center !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 2.5rem !important;
  }
  
  .footer-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .footer-brand .nav-logo {
    background-position: center center !important;
    margin: 0 auto 1rem !important;
  }
  
  .footer-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .footer-links {
    padding-left: 0 !important;
  }
  
  .footer-links li {
    text-align: center !important;
  }
  
  .footer-grid .contact-card {
    margin: 0 auto !important;
    text-align: center !important;
    max-width: 320px;
  }
  
  .footer-grid .contact-card-header {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.75rem !important;
    justify-content: center !important;
  }
  
  .footer-grid .contact-card-brand {
    align-items: center !important;
  }
  
  .footer-grid .contact-card-body {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 1rem !important;
  }
  
  .footer-grid .contact-card-item {
    align-items: center !important;
  }
  
  .footer-grid .contact-card-link {
    justify-content: center !important;
  }


  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.25rem !important;
    text-align: center !important;
  }
  
  .footer-socials {
    justify-content: center !important;
  }

  .nav-link {
    font-size: 1.25rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-item-large, .portfolio-item-medium, .portfolio-item-small {
    height: 380px;
  }
  
  .portfolio-item-large {
    grid-row: auto;
  }
  
  .form-options-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer {
    padding: 4rem 5% 2rem;
  }
  
  .funnel-container {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   PHILOSOPHY DETAIL SECTION (STILPHILOSOPHIE RELAUNCH)
   ========================================================================== */
.philosophy-detail-section {
  background: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E"),
    var(--primary-dark);
  color: var(--white);
}

.philosophy-detail-section h2 {
  color: var(--champagne);
  margin-bottom: 1.5rem;
}

.philosophy-detail-section p {
  color: rgba(236, 236, 227, 0.85);
  font-size: 1.25rem;
  line-height: 1.7;
}

.philosophy-detail-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.philosophy-detail-image {
  width: 100%;
  height: 560px;
  background: url("../assets/images/philosophy_detail.webp?v=1.0") center / cover no-repeat;
  transition: var(--transition-smooth);
}

.philosophy-detail-image-wrap:hover .philosophy-detail-image {
  transform: scale(1.04);
}

/* ==========================================================================
   PROCESS GRID (HORIZONTAL FLOW)
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--champagne) 0%, rgba(var(--primary-dark-rgb), 0.15) 100%);
  z-index: 1;
}

.process-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.25rem 1.5rem;
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--champagne);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.process-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.process-card h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0;
  font-weight: 500;
}

.process-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Process Grid */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   ABOUT BLOOM SECTION GRIDS & BIO
   ========================================================================== */
.about-brand-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}

.about-designer-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}

.about-designer-sidebar {
  display: flex;
  flex-direction: column;
}

.about-brand-image-wrap,
.about-designer-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.about-brand-image,
.about-designer-image {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition-smooth);
}

.about-brand-image-wrap:hover .about-brand-image,
.about-designer-image-wrap:hover .about-designer-image {
  transform: scale(1.04);
}

.designer-info-card {
  background-color: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.designer-info-card:hover {
  border-color: var(--champagne);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
}

.designer-info-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--espresso);
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--champagne);
  padding-left: 1rem;
}

.designer-signature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--espresso);
  margin-bottom: 0.15rem;
}

.designer-signature span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

@media (max-width: 992px) {
  .about-brand-grid,
  .about-designer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-brand-image,
  .about-designer-image {
    height: 400px !important;
  }
  
  .about-designer-text {
    padding-left: 0 !important;
  }
  
  .designer-info-card {
    display: none;
  }
}

/* ==========================================================================
   TESTIMONIAL SECTION
   ========================================================================== */
.testimonial-section {
  background-color: var(--white);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) 5%;
}

.testimonial-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-stars {
  color: var(--champagne);
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  line-height: 1.55;
  color: var(--espresso);
  font-style: italic;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  max-width: 420px;
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 1.75rem;
  z-index: 10000;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

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

.cookie-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.cookie-content p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.cookie-options {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.cookie-options.active {
  display: flex;
}

.cookie-option-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--espresso);
  cursor: pointer;
}

.cookie-option-item input[type="checkbox"] {
  accent-color: var(--moss);
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.cookie-footer {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.cookie-footer a {
  color: var(--muted);
}

.cookie-footer a:hover {
  color: var(--moss);
}

@media (max-width: 576px) {
  .cookie-banner {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}

/* Switched permanently to Editorial Hero */

/* ==========================================================================
   PROMOTION BLOCKS & BARS (DESIGN CALL & WANDMALEREI)
   ========================================================================== */
.promo-block {
  background-color: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  margin-top: 0;
  transition: var(--transition-smooth);
}

.promo-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(53, 54, 33, 0.08); /* Olivgrün overlay filter */
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  pointer-events: none;
}

.promo-block:hover::before {
  opacity: 0;
}

.promo-block-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.04;
  mix-blend-mode: multiply;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  pointer-events: none;
}

.promo-block:hover .promo-block-bg {
  opacity: 0.16;
  transform: scale(1.04);
}

.promo-block:hover {
  border-color: rgba(var(--sage-rgb), 0.35);
  box-shadow: 0 20px 40px rgba(27, 18, 12, 0.04);
}

.promo-block-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.promo-block-action {
  position: relative;
  z-index: 2;
}

/* Wandmalerei Add-on Info Line */
.promo-addon-info {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.promo-addon-info strong {
  color: var(--moss);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

/* ==========================================================================
   FAQ WATERMARK BACKDROP
   ========================================================================== */
#faq {
  position: relative;
  overflow: hidden;
}

.faq-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/faq_moodboard.webp?v=1.0');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.04;
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}

#faq .container {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   MOCK INSTAGRAM WIDGET
   ========================================================================== */
.instagram-widget {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.75rem;
  margin-top: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.instagram-widget:hover {
  border-color: rgba(var(--sage-rgb), 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.insta-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.insta-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.insta-meta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.insta-username-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.insta-username {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--espresso);
}

.btn-instagram-follow {
  background-color: var(--moss);
  color: var(--porcelain);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 1.1rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.btn-instagram-follow:hover {
  background-color: var(--espresso);
  color: var(--porcelain);
}

.insta-bio-compact {
  font-size: 0.8rem;
  line-height: 1.3;
}

.insta-bio-compact strong {
  color: var(--espresso);
  display: block;
  font-weight: 500;
}

.insta-bio-compact span {
  color: var(--muted);
  display: block;
  font-size: 0.75rem;
}

.insta-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.insta-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--porcelain);
  display: block;
}

.insta-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(27, 18, 12, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--white);
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.insta-item:hover .insta-img {
  transform: scale(1.08);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

@media (max-width: 992px) {
  .instagram-widget {
    display: none; /* Hide on tablets and mobile to preserve vertical layout and page load performance */
  }
}

/* ==========================================================================
   PROCESS CARD WATERMARK BACKGROUNDS (MINIMALIST & QUIET)
   ========================================================================== */
.process-card {
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(53, 54, 33, 0.02); /* extremely soft green overlay */
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  pointer-events: none;
}

.process-card:hover::before {
  opacity: 0;
}

.process-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.015; /* barely visible (1.5%) to keep it extremely calm */
  mix-blend-mode: multiply;
  filter: grayscale(100%) contrast(0.6) brightness(1.15); /* remove color noise and lower contrast */
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  pointer-events: none;
}

.process-card:hover .process-card-bg {
  opacity: 0.045; /* maximum 4.5% on hover */
  transform: scale(1.03);
}

.process-card h3,
.process-card p,
.process-number {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   PREMIUM CONTACT BUSINESS CARD
   ========================================================================== */
.contact-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  margin-top: 1.25rem;
  max-width: 480px;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--champagne), var(--moss));
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--sage-rgb), 0.35);
  box-shadow: 0 20px 45px rgba(27, 18, 12, 0.05);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
}

.contact-card-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--porcelain);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.contact-card-brand {
  display: flex;
  flex-direction: column;
}

.contact-card-brand h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--espresso);
  margin-bottom: 0.15rem;
  font-weight: 500;
}

.contact-card-brand span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.contact-card-signet {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 28px;
  height: 28px;
  background: url('../assets/signet.png') center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.contact-card:hover .contact-card-signet {
  opacity: 0.25;
}

.contact-card-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.contact-card-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-card-item.full-width {
  grid-column: span 2;
}

.contact-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
}

.contact-card-value {
  font-size: 0.95rem;
  color: var(--espresso);
  line-height: 1.4;
}

.contact-card-value a:hover {
  color: var(--moss);
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.contact-card-link svg {
  color: var(--moss);
  flex-shrink: 0;
}

.contact-card-link:hover {
  color: var(--moss);
}

@media (max-width: 576px) {
  .contact-card {
    padding: 1.5rem;
  }
  .contact-card-header {
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  .contact-card-avatar {
    width: 60px;
    height: 60px;
  }
  .contact-card-brand h3 {
    font-size: 1.2rem;
  }
  .contact-card-body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-card-item.full-width {
    grid-column: auto;
  }
}

/* ==========================================================================
   DESIGN CALL MODAL FUNNEL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(53, 54, 33, 0.65); /* var(--espresso) with opacity */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 16px;
  width: 100%;
  max-width: 580px;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  max-height: 90vh;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--espresso);
  opacity: 0.6;
  transition: opacity 0.25s ease;
  line-height: 1;
  padding: 0.5rem;
  z-index: 10;
}

.modal-close:hover {
  opacity: 1;
}

.modal-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.modal-progress-bar {
  height: 4px;
  flex: 1;
  background-color: rgba(53, 54, 33, 0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.modal-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--moss);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-progress-bar.active::after {
  width: 100%;
}

.modal-form-step {
  display: none;
}

.modal-form-step.active {
  display: block;
  animation: modalFormFadeIn 0.4s ease-out forwards;
}

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

.modal-success-screen {
  text-align: center;
  padding: 1.5rem 0;
  display: none;
}

.modal-success-screen.active {
  display: block;
  animation: modalFormFadeIn 0.4s ease-out forwards;
}

.modal-success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(147, 148, 116, 0.15); /* var(--sage-rgb) */
  color: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.modal-success-icon svg {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   DESIGNER PROFILE STECKBRIEF (THINGS I LOVE)
   ========================================================================== */
.designer-profile-card {
  padding: 2.25rem 2rem;
}

.profile-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--espresso);
  margin-bottom: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
}

.profile-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.profile-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.profile-card-list .emoji {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ==========================================================================
   LAZY LOADING BACKGROUND TRANSITIONS
   ========================================================================== */
.lazy-bg {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Normal image elements fade in to 1 */
.about-brand-image.lazy-loaded,
.about-designer-image.lazy-loaded,
.portfolio-img.lazy-loaded,
.contact-card-avatar.lazy-loaded {
  opacity: 1;
}

/* Watermarks fade in to their specific subtle opacity values */
.service-card-bg.lazy-loaded {
  opacity: 0.04;
}
.service-card:hover .service-card-bg.lazy-loaded {
  opacity: 0.16;
}

.promo-block-bg.lazy-loaded {
  opacity: 0.04;
}
.promo-block:hover .promo-block-bg.lazy-loaded {
  opacity: 0.16;
}

.process-card-bg.lazy-loaded {
  opacity: 0.015;
}
.process-card:hover .process-card-bg.lazy-loaded {
  opacity: 0.045;
}



