/* ==========================================================================
   Di Arche Construction — Main Stylesheet
   Design: Architectural Minimalism | Warm Contrast (Charcoal + Copper)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Google Fonts Import
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@500&display=swap');

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Primary Palette */
  --color-charcoal: #1A1A1A;
  --color-graphite: #2D2D2D;
  --color-warm-gray: #4A4A4A;
  --color-silver: #9A9A9A;
  --color-light-gray: #F0EEEB;
  --color-off-white: #FAF9F7;
  --color-white: #FFFFFF;

  /* Accent — Copper / Bronze */
  --color-accent: #B87333;
  --color-accent-hover: #A0622B;
  --color-accent-light: #D4A574;
  --color-accent-glow: rgba(184, 115, 51, 0.15);

  /* Brand Blue */
  --color-brand-blue: #2B7BCD;
  --color-brand-blue-dark: #1E5A9A;

  /* Functional */
  --color-success: #25D366;
  --color-error: #D32F2F;
  --color-warning: #F9A825;
  --color-star: #F5B731;

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Sizing */
  --container-max: 1200px;
  --container-pad: 24px;
  --section-pad: 100px;
  --nav-height: 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-card-hover: 0 12px 48px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-warm-gray);
  background-color: var(--color-off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1.2;
}

p + p {
  margin-top: 1em;
}

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

::-moz-selection {
  background-color: var(--color-accent);
  color: var(--color-white);
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}


/* ==========================================================================
   SKIP NAVIGATION (Accessibility)
   ========================================================================== */

.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: top var(--transition-fast);
}

.skip-nav:focus {
  top: 16px;
  color: var(--color-white);
}


/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background-color: var(--color-light-gray);
}

.section--dark {
  background-color: var(--color-charcoal);
  color: var(--color-light-gray);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}


/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--color-charcoal);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-heading--underline {
  position: relative;
  padding-bottom: 20px;
}

.section-heading--underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center.section-heading--underline::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subheading {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-silver);
  max-width: 560px;
  line-height: 1.7;
}

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


/* ==========================================================================
   NAVIGATION (.navbar)
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 40px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              backdrop-filter var(--transition-base),
              height var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  height: 68px;
}

/* --- Logo --- */
.navbar__logo {
  flex-shrink: 0;
}

.navbar__logo img {
  height: 40px;
  width: auto;
  transition: height var(--transition-base);
}

.navbar.scrolled .navbar__logo img {
  height: 34px;
}

/* --- Center Nav Links --- */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.navbar.scrolled .navbar__link {
  color: var(--color-charcoal);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--color-accent);
}

.navbar__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* --- Right Section --- */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-white);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
  background: transparent;
}

.navbar.scrolled .lang-toggle {
  color: var(--color-charcoal);
  border-color: var(--color-light-gray);
}

.lang-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.lang-toggle__flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-toggle__separator {
  opacity: 0.4;
}

/* Phone Number */
.navbar__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.navbar.scrolled .navbar__phone {
  color: var(--color-charcoal);
}

.navbar__phone:hover {
  color: var(--color-accent);
}

.navbar__phone-icon {
  font-size: 1rem;
}

/* CTA Button in Nav */
.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
}

.navbar__cta:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Hamburger (shown on mobile) */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar.scrolled .navbar__hamburger span {
  background: var(--color-charcoal);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ==========================================================================
   MOBILE MENU
   ========================================================================== */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 999;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.mobile-menu__close:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-white);
  padding: 12px 24px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
  color: var(--color-accent);
}

.mobile-menu__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-light-gray);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 20px;
  min-height: 44px;
  transition: color var(--transition-fast);
}

.mobile-menu__contact-link:hover {
  color: var(--color-accent);
}

.mobile-menu__socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.mobile-menu__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--color-light-gray);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.mobile-menu__socials a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
}


/* ==========================================================================
   HERO (.hero)
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

/* Dark gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.82) 0%,
    rgba(26, 26, 26, 0.55) 50%,
    rgba(26, 26, 26, 0.35) 100%
  );
}

/* Blueprint grid decoration (top-left) */
.hero__blueprint {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  z-index: 2;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(135deg, black 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(135deg, black 0%, transparent 70%);
  pointer-events: none;
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 50%;
  padding-left: 80px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 24px;
}

.hero__label::before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 1px;
  background: var(--color-accent);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title .accent {
  color: var(--color-accent-light);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--color-silver);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-silver);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.hero__scroll-icon {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-icon::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--color-accent-light);
  border-radius: 2px;
  animation: bounce 2s ease-in-out infinite;
}


/* ==========================================================================
   SUB-PAGE HERO (.hero-sub)
   ========================================================================== */

.hero-sub {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-sub .hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.7) 0%,
    rgba(26, 26, 26, 0.5) 100%
  );
}

.hero-sub__content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 var(--container-pad);
}

.hero-sub__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 400;
}

.breadcrumb a {
  color: var(--color-silver);
  transition: color var(--transition-fast);
}

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

.breadcrumb__separator {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
}

.breadcrumb__current {
  color: var(--color-accent-light);
  font-weight: 500;
}


/* ==========================================================================
   STATS BAR (.stats-bar)
   ========================================================================== */

.stats-bar {
  background: var(--color-light-gray);
  padding: 48px 0;
}

.stats-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-bar__item {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
  position: relative;
}

/* Vertical dividers */
.stats-bar__item + .stats-bar__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--color-silver);
  opacity: 0.25;
}

.stats-bar__number {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stats-bar__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-warm-gray);
  letter-spacing: 0.02em;
}


/* ==========================================================================
   SERVICE CARDS (.services-section)
   ========================================================================== */

.services-section {
  padding: var(--section-pad) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 48px 36px 40px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

/* Copper top border — animates on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-accent);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

/* Faded background number */
.service-card__number {
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 400;
  color: var(--color-light-gray);
  line-height: 1;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--color-accent);
  font-size: 2rem;
}

.service-card__icon img,
.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--color-warm-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card__link:hover {
  gap: 12px;
  color: var(--color-accent-hover);
}

.service-card__link::after {
  content: '\2192';
  transition: transform var(--transition-fast);
}

.service-card__link:hover::after {
  transform: translateX(2px);
}


/* ==========================================================================
   BEFORE-AFTER SLIDER (.before-after)
   ========================================================================== */

.before-after {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 16 / 9;
}

.before-after__after,
.before-after__before {
  position: absolute;
  inset: 0;
}

.before-after__after img,
.before-after__before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after__before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.before-after__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--color-white);
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}

.before-after__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

.before-after__handle::before {
  content: '\2194';
  font-size: 1.25rem;
  color: var(--color-charcoal);
}

.before-after__label {
  position: absolute;
  z-index: 3;
  top: 20px;
  padding: 6px 16px;
  background: rgba(26, 26, 26, 0.7);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  pointer-events: none;
}

.before-after__label--before {
  left: 20px;
}

.before-after__label--after {
  right: 20px;
}


/* ==========================================================================
   WHY CHOOSE US (.why-section)
   ========================================================================== */

.why-section {
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.why-section__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-section__image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* Decorative frame accent */
.why-section__image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-sm);
  z-index: -1;
}

.why-section__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-glow);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  font-size: 1.25rem;
}

.why-feature__text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.why-feature__text p {
  font-size: 0.9rem;
  color: var(--color-warm-gray);
  line-height: 1.65;
}


/* ==========================================================================
   REVIEWS CAROUSEL (.reviews-section)
   ========================================================================== */

.reviews-section {
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.reviews-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.reviews-overall {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-overall__score {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1;
}

.reviews-overall__stars {
  display: flex;
  gap: 2px;
  color: var(--color-star);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.reviews-overall__count {
  font-size: 0.85rem;
  color: var(--color-silver);
}

.reviews-overall__google {
  width: 24px;
  height: 24px;
}

/* Scroll track */
.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

/* Review Card */
.review-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  color: var(--color-star);
  font-size: 0.9rem;
}

.review-card__google-icon {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--color-warm-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-light-gray);
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-charcoal);
}

.review-card__date {
  font-size: 0.75rem;
  color: var(--color-silver);
}

/* Navigation arrows */
.reviews-nav {
  display: flex;
  gap: 12px;
}

.reviews-nav__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 50%;
  color: var(--color-charcoal);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.reviews-nav__btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}


/* ==========================================================================
   CTA BANNER (.cta-banner)
   ========================================================================== */

.cta-banner {
  position: relative;
  padding: 80px 0;
  background: var(--color-charcoal);
  overflow: hidden;
}

/* Subtle grain texture overlay */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* Blueprint grid lines decoration */
.cta-banner__blueprint {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner__text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-silver);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ==========================================================================
   FOOTER (.footer)
   ========================================================================== */

.footer {
  background: var(--color-charcoal);
  color: var(--color-silver);
  padding-top: 72px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* Column: Logo & Description */
.footer__brand-logo {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
}

.footer__brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-silver);
  max-width: 280px;
}

/* Column headings */
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--color-silver);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-accent-light);
  padding-left: 4px;
}

/* Contact column */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--color-silver);
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 20px;
  color: var(--color-accent-light);
  margin-top: 2px;
}

.footer__contact-item a {
  color: var(--color-silver);
}

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

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--color-silver);
  opacity: 0.7;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--color-silver);
  opacity: 0.7;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

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

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-silver);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer__socials a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
}


/* ==========================================================================
   FORM STYLES (.quote-form)
   ========================================================================== */

.quote-form {
  max-width: 720px;
  margin: 0 auto;
}

/* Multi-step Progress Indicator */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.form-progress__step {
  display: flex;
  align-items: center;
  gap: 0;
}

.form-progress__circle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--color-light-gray);
  background: var(--color-white);
  color: var(--color-silver);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-base);
  position: relative;
}

.form-progress__step.active .form-progress__circle {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
}

.form-progress__step.completed .form-progress__circle {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
}

.form-progress__step.completed .form-progress__circle::after {
  content: '\2713';
  font-size: 1rem;
}

.form-progress__line {
  width: 60px;
  height: 2px;
  background: var(--color-light-gray);
  transition: background var(--transition-base);
}

.form-progress__step.completed + .form-progress__step .form-progress__line,
.form-progress__step.completed .form-progress__line {
  background: var(--color-accent);
}

.form-progress__label {
  display: block;
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-silver);
  text-align: center;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.form-progress__step.active .form-progress__label {
  color: var(--color-accent);
}

/* Form fields */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 8px;
}

.form-label .required {
  color: var(--color-accent);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  background: var(--color-white);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-silver);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239A9A9A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Drag-and-Drop Upload Zone */
.upload-zone {
  border: 2px dashed var(--color-light-gray);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--color-accent);
  background: var(--color-accent-glow);
}

.upload-zone__icon {
  font-size: 2rem;
  color: var(--color-silver);
  margin-bottom: 12px;
}

.upload-zone__text {
  font-size: 0.9rem;
  color: var(--color-warm-gray);
}

.upload-zone__hint {
  font-size: 0.75rem;
  color: var(--color-silver);
  margin-top: 8px;
}

/* Image Preview Grid */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.preview-grid__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-light-gray);
}

.preview-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-grid__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  background: rgba(26, 26, 26, 0.7);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.preview-grid__item:hover .preview-grid__remove {
  opacity: 1;
}

/* Form Success State */
.form-success {
  text-align: center;
  padding: 64px 24px;
}

.form-success__checkmark {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  animation: scaleIn 0.4s ease;
}

.form-success__checkmark svg {
  stroke-dasharray: 100;
  animation: checkmark 0.6s ease 0.2s forwards;
}

.form-success__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}

.form-success__text {
  font-size: 1rem;
  color: var(--color-warm-gray);
}

/* Form navigation buttons */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}


/* ==========================================================================
   GALLERY (.gallery-section)
   ========================================================================== */

.gallery-section {
  padding: var(--section-pad) 0;
}

/* Filter Bar */
.gallery-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filters--center {
  justify-content: center;
}

.gallery-filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-warm-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover {
  color: var(--color-charcoal);
}

.gallery-filter-btn.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* Masonry Grid */
.gallery-grid {
  columns: 3;
  column-gap: 24px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

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

/* Overlay on hover */
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(26, 26, 26, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-item__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 4px;
}

.gallery-item__category {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ==========================================================================
   CARDS (.card)
   ========================================================================== */

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card__body {
  padding: 24px;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-charcoal);
  margin-bottom: 8px;
}

.card__text {
  font-size: 0.9rem;
  color: var(--color-warm-gray);
  line-height: 1.65;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1.4;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Primary — Copper */
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 115, 51, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary — Outlined / White */
.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* Secondary on light backgrounds */
.btn-secondary--dark {
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.btn-secondary--dark:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

/* WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background: #1da851;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

/* Button Sizes */
.btn--sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 0.95rem;
}

.btn--full {
  width: 100%;
}

.btn--pill {
  border-radius: var(--radius-pill);
}


/* ==========================================================================
   BACK TO TOP (.back-to-top)
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(184, 115, 51, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-base),
              visibility var(--transition-base),
              transform var(--transition-base),
              background var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}


/* ==========================================================================
   COOKIE / GDPR BANNER (.cookie-banner)
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-graphite);
  color: var(--color-light-gray);
  padding: 20px 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}

.cookie-banner__text a {
  color: var(--color-accent-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__accept {
  padding: 10px 24px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-banner__accept:hover {
  background: var(--color-accent-hover);
}

.cookie-banner__reject {
  padding: 10px 24px;
  background: transparent;
  color: var(--color-silver);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-banner__reject:hover {
  border-color: var(--color-silver);
  color: var(--color-white);
}


/* ==========================================================================
   LOADING SPINNER (.spinner)
   ========================================================================== */

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-light-gray);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner--sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.spinner--lg {
  width: 56px;
  height: 56px;
  border-width: 4px;
}

.spinner-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(250, 249, 247, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}


/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Text */
.text-accent {
  color: var(--color-accent);
}

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

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

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.text-mono {
  font-family: var(--font-mono);
}

/* Background */
.bg-dark {
  background-color: var(--color-charcoal);
  color: var(--color-light-gray);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--color-white);
}

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

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

/* Grain Overlay (pseudo-element) */
.grain-overlay {
  position: relative;
}

.grain-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 1;
}

/* Spacing */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 64px; }

/* Display */
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.d-block { display: block; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* Visibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Image */
.img-fluid {
  max-width: 100%;
  height: auto;
}

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

/* Rounded */
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 50%; }

/* Shadow */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Position */
.relative { position: relative; }

/* Width constraints */
.max-w-sm { max-width: 480px; }
.max-w-md { max-width: 640px; }
.max-w-lg { max-width: 800px; }
.max-w-xl { max-width: 1000px; }
.mx-auto { margin-left: auto; margin-right: auto; }


/* ==========================================================================
   HTML-CLASS BRIDGE
   The HTML files use flat naming (e.g. .hero-bg, .nav-link) while the
   original CSS above uses BEM naming (.hero__bg, .navbar__link).
   This section defines all the flat-named classes actually referenced
   in the markup so every page renders correctly.
   ========================================================================== */


/* --------------------------------------------------------------------------
   NAVIGATION — Flat-named classes used in all HTML pages
   -------------------------------------------------------------------------- */

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

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition-base);
}

.navbar.scrolled .nav-logo img {
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  padding: 4px 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.navbar.scrolled .nav-link {
  color: var(--color-charcoal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.navbar.scrolled .nav-phone {
  color: var(--color-charcoal);
}

.nav-phone:hover {
  color: var(--color-accent);
}

.nav-cta {
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

/* Language Toggle — flat-name extras */
.lang-flag {
  font-size: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  visibility: hidden;
}

.lang-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.navbar.scrolled .lang-toggle {
  color: var(--color-charcoal);
  border-color: var(--color-light-gray);
}

/* Icon utility used across all pages */
.icon-sm {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   HAMBURGER — Flat-named classes
   -------------------------------------------------------------------------- */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar.scrolled .hamburger-line {
  background: var(--color-charcoal);
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* --------------------------------------------------------------------------
   MOBILE MENU — Flat-named classes
   -------------------------------------------------------------------------- */

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 80px 24px 40px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-white);
  padding: 12px 24px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: var(--color-accent);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 320px;
}

.mobile-btn {
  width: 100%;
  justify-content: center;
}

.mobile-lang {
  color: var(--color-silver);
  font-size: 0.9rem;
}

.mobile-lang:hover {
  color: var(--color-accent);
}


/* --------------------------------------------------------------------------
   HERO — Flat-named classes used across all sub-pages & homepage
   -------------------------------------------------------------------------- */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.82) 0%,
    rgba(26, 26, 26, 0.55) 50%,
    rgba(26, 26, 26, 0.35) 100%
  );
}

.hero-sub .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.7) 0%,
    rgba(26, 26, 26, 0.5) 100%
  );
}

.hero-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  z-index: 2;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(135deg, black 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(135deg, black 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero .hero-content {
  max-width: 50%;
  padding-left: 80px;
}

.hero-sub .hero-content {
  max-width: 700px;
  text-align: center;
  padding: 0 var(--container-pad);
}

.hero-sub-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  text-align: center;
  padding: 0 var(--container-pad);
  margin: 0 auto;
}

.hero-sub-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub .hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--color-silver);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-sub .hero-subtitle {
  margin-bottom: 16px;
  max-width: 100%;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Breadcrumb — flat-named, used in all sub-pages */
.breadcrumb ol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.breadcrumb ol li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb ol li + li::before {
  content: '/';
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
}

.breadcrumb ol li a {
  color: var(--color-silver);
  transition: color var(--transition-fast);
}

.breadcrumb ol li a:hover {
  color: var(--color-accent-light);
}

.breadcrumb ol li[aria-current="page"],
.breadcrumb ol li:last-child {
  color: var(--color-accent-light);
  font-weight: 500;
}

/* Breadcrumb flat (used in datenschutz/impressum without <ol>) */
.breadcrumb span {
  color: var(--color-accent-light);
  font-weight: 500;
}

.breadcrumb > a {
  color: var(--color-silver);
}

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

.breadcrumb > span[aria-hidden] {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  font-weight: 400;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--color-silver);
  animation: bounce 2s ease-in-out infinite;
}

/* Hero-small / hero-contact variant (en/contact.html) */
.hero-small {
  height: 40vh;
  min-height: 280px;
}

.hero-contact {
  text-align: center;
}

.hero-contact .hero-content {
  max-width: 700px;
  padding-left: 0;
  margin: 0 auto;
  text-align: center;
}


/* --------------------------------------------------------------------------
   SECTION UTILITIES — Flat-named classes
   -------------------------------------------------------------------------- */

.section-dark {
  background-color: var(--color-charcoal);
  color: var(--color-light-gray);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-alt {
  background-color: var(--color-light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header-light .section-label {
  color: var(--color-accent-light);
}

.section-header-light .section-title {
  color: var(--color-white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--color-charcoal);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-accent {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin-bottom: 16px;
}

.section-header .section-accent {
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}


/* --------------------------------------------------------------------------
   STATS BAR — Flat-named classes (index.html, en/index.html)
   -------------------------------------------------------------------------- */

.stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
  position: relative;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--color-silver);
  opacity: 0.25;
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-plus {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--color-accent);
}

.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-warm-gray);
  letter-spacing: 0.02em;
}


/* --------------------------------------------------------------------------
   SERVICE CARDS — Flat-named classes (index.html)
   -------------------------------------------------------------------------- */

.service-number {
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 400;
  color: var(--color-light-gray);
  line-height: 1;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.service-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-accent);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-border {
  width: 100%;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--color-accent);
  font-size: 2rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--color-warm-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-link:hover {
  gap: 12px;
  color: var(--color-accent-hover);
}


/* --------------------------------------------------------------------------
   SERVICES DETAIL PAGE — leistungen.html
   -------------------------------------------------------------------------- */

.service-detail {
  overflow: hidden;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-detail-reverse {
  direction: rtl;
}

.service-detail-reverse > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.service-detail-content {
  display: flex;
  flex-direction: column;
}

.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--color-charcoal);
  margin-bottom: 16px;
}

.service-detail-content p {
  font-size: 1rem;
  color: var(--color-warm-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-detail-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-glow);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-detail-icon svg {
  width: 28px;
  height: 28px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-warm-gray);
}

.service-list li .icon-sm {
  color: var(--color-accent);
  flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   PROCESS SECTION — leistungen.html
   -------------------------------------------------------------------------- */

.process-section {
  overflow: hidden;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 48px;
}

.process-line {
  display: none;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-base);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.08);
}

.process-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 16px;
}

.process-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-glow);
  border-radius: 50%;
  color: var(--color-accent);
  margin: 0 auto 16px;
}

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

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-silver);
  line-height: 1.6;
}


/* --------------------------------------------------------------------------
   WHY SECTION — Flat-named classes (index.html)
   -------------------------------------------------------------------------- */

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.why-image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-sm);
  z-index: -1;
}

.why-content {
  display: flex;
  flex-direction: column;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 16px;
}

.why-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-glow);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  font-size: 1.25rem;
}

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

.why-feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.why-feature-text p {
  font-size: 0.9rem;
  color: var(--color-warm-gray);
  line-height: 1.65;
}


/* --------------------------------------------------------------------------
   REVIEWS — Flat-named classes (index.html)
   -------------------------------------------------------------------------- */

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.reviews-stars {
  display: flex;
  gap: 2px;
  color: var(--color-star);
  font-size: 1.1rem;
}

.star-filled {
  color: var(--color-star);
  fill: var(--color-star);
}

.reviews-score {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1;
}

.reviews-count {
  font-size: 0.85rem;
  color: var(--color-silver);
}

.google-icon {
  width: 24px;
  height: 24px;
}

.reviews-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.reviews-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.review-nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 50%;
  color: var(--color-charcoal);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.review-nav-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}


/* --------------------------------------------------------------------------
   CTA BANNER — Flat-named classes
   -------------------------------------------------------------------------- */

.cta-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.cta-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-silver);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* --------------------------------------------------------------------------
   BEFORE/AFTER — Flat-named classes (index.html, projekte.html)
   -------------------------------------------------------------------------- */

.before-after-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 16 / 9;
}

.before-after-img {
  position: absolute;
  inset: 0;
}

.before-after-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-img {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.before-after-label {
  position: absolute;
  z-index: 3;
  top: 20px;
  padding: 6px 16px;
  background: rgba(26, 26, 26, 0.7);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  pointer-events: none;
}

.label-before {
  left: 20px;
}

.label-after {
  right: 20px;
}

.before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

.handle-line {
  flex: 1;
  width: 3px;
  background: var(--color-white);
}

.handle-circle {
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-charcoal);
}

.handle-circle svg {
  width: 20px;
  height: 20px;
}


/* --------------------------------------------------------------------------
   FEATURED PROJECT — Flat-named classes
   -------------------------------------------------------------------------- */

.featured-project {
  overflow: hidden;
}

.featured-project-info {
  text-align: center;
  max-width: 700px;
  margin: 32px auto 0;
}

.featured-project-info h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.featured-project-info p {
  font-size: 0.95rem;
  color: var(--color-silver);
  line-height: 1.7;
  margin-bottom: 16px;
}

.project-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-accent-light);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.02em;
}


/* --------------------------------------------------------------------------
   FOOTER — Flat-named classes used across all HTML pages
   -------------------------------------------------------------------------- */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-silver);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-silver);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-silver);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent-light);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-silver);
}

.footer-contact li .icon-sm {
  color: var(--color-accent-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--color-silver);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-silver);
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--color-silver);
  opacity: 0.7;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--color-accent-light);
}


/* --------------------------------------------------------------------------
   COOKIE BANNER — Flat-named classes
   -------------------------------------------------------------------------- */

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.cookie-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}

.cookie-content p a {
  color: var(--color-accent-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* Button size overrides */
.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 0.95rem;
}


/* --------------------------------------------------------------------------
   CONTACT PAGE — kontakt.html, en/contact.html
   -------------------------------------------------------------------------- */

.contact-section {
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--color-charcoal);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--color-warm-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--color-warm-gray);
}

.contact-details li .icon-sm {
  color: var(--color-accent);
  margin-top: 3px;
}

.contact-details a {
  color: var(--color-accent);
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--color-warm-gray);
}

.contact-item .icon-sm {
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--color-accent);
}

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

.contact-item strong {
  color: var(--color-charcoal);
}

.contact-map {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  display: block;
  border-radius: var(--radius-lg);
}

.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* Contact Hours (en/contact.html) */
.contact-hours {
  margin-top: 24px;
  margin-bottom: 24px;
}

.contact-hours h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}

.contact-hours table {
  width: 100%;
  border-collapse: collapse;
}

.contact-hours td {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--color-warm-gray);
  border-bottom: 1px solid var(--color-light-gray);
}

.contact-hours td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--color-charcoal);
}

.contact-whatsapp {
  margin-bottom: 24px;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-light-gray);
  border-radius: 50%;
  color: var(--color-warm-gray);
  transition: all var(--transition-fast);
}

.contact-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
}


/* --------------------------------------------------------------------------
   FORM — Flat-named classes (kontakt.html, en/contact.html)
   -------------------------------------------------------------------------- */

/* Multi-step progress indicator (flat names used in kontakt.html) */
.form-progress .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--color-light-gray);
  background: var(--color-white);
  color: var(--color-silver);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.progress-step.active .step-number {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
}

.progress-step.completed .step-number {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
}

.step-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-silver);
  text-align: center;
  white-space: nowrap;
}

.progress-step.active .step-text {
  color: var(--color-accent);
}

.progress-line {
  width: 60px;
  height: 2px;
  background: var(--color-light-gray);
  transition: background var(--transition-base);
  align-self: center;
  flex-shrink: 0;
}

.progress-step.completed ~ .progress-line,
.progress-step.active ~ .progress-line {
  background: var(--color-accent);
}

/* Progress indicator (en/contact.html) */
.progress-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.step-circle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--color-light-gray);
  background: var(--color-white);
  color: var(--color-silver);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.step-circle.active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
}

.step-line {
  width: 48px;
  height: 2px;
  background: var(--color-light-gray);
  transition: background var(--transition-base);
}

.progress-bar {
  width: 100%;
  height: 3px;
  background: var(--color-light-gray);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width var(--transition-base);
}

/* Form steps */
.form-step {
  animation: fadeIn 0.3s ease;
}

.form-step h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-charcoal);
  margin-bottom: 24px;
}

/* Form fields — native HTML elements (kontakt.html uses plain <label>, <input>) */
.quote-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 8px;
}

.quote-form .required {
  color: var(--color-accent);
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  background: var(--color-white);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: var(--color-silver);
}

.quote-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239A9A9A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

/* Radio groups */
.radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--color-warm-gray);
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.radio-label:hover {
  border-color: var(--color-accent);
}

.radio-label input[type="radio"]:checked + span,
.radio-label:has(input[type="radio"]:checked) {
  color: var(--color-accent);
}

.radio-label:has(input[type="radio"]:checked) {
  border-color: var(--color-accent);
  background: var(--color-accent-glow);
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-warm-gray);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Form button row */
.form-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--color-silver);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Form group checkbox variant */
.form-group-checkbox {
  margin-top: 24px;
}

/* Drop zone (file upload) */
.drop-zone {
  border: 2px dashed var(--color-light-gray);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.drop-zone:hover,
.drop-zone.dragover {
  border-color: var(--color-accent);
  background: var(--color-accent-glow);
}

.drop-zone-icon {
  font-size: 2rem;
  color: var(--color-silver);
  margin-bottom: 12px;
}

.drop-zone-icon svg {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

.drop-zone-text {
  font-size: 0.9rem;
  color: var(--color-warm-gray);
}

.drop-zone-browse {
  color: var(--color-accent);
  font-weight: 600;
  cursor: pointer;
}

.drop-zone-hint,
.drop-zone-formats {
  font-size: 0.75rem;
  color: var(--color-silver);
  margin-top: 8px;
}

.file-input {
  display: none;
}

.file-preview,
.upload-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

/* Form success step */
.form-step-success {
  text-align: center;
  padding: 40px 0;
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-charcoal);
  margin-bottom: 0;
}

.success-content p {
  font-size: 1rem;
  color: var(--color-warm-gray);
}

.success-checkmark {
  margin-bottom: 16px;
}

.success-checkmark svg {
  color: var(--color-accent);
}

.checkmark-circle {
  stroke: var(--color-accent);
}

.checkmark-check {
  stroke: var(--color-accent);
  stroke-dasharray: 100;
  animation: checkmark 0.6s ease 0.2s forwards;
}

.success-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.success-icon {
  color: var(--color-accent);
  margin-bottom: 8px;
}

.success-whatsapp {
  margin-top: 24px;
}

.success-whatsapp p {
  font-size: 0.9rem;
  color: var(--color-silver);
  margin-bottom: 12px;
}

.whatsapp-followup {
  display: inline-flex;
}


/* --------------------------------------------------------------------------
   ABOUT PAGE — ueber-uns.html
   -------------------------------------------------------------------------- */

.story-section {
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.story-content {
  display: flex;
  flex-direction: column;
}

.story-content h2 {
  margin-bottom: 20px;
}

.story-content p {
  font-size: 1rem;
  color: var(--color-warm-gray);
  line-height: 1.7;
}

/* Values */
.values-section {
  overflow: hidden;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-base), transform var(--transition-base);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.value-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-glow);
  border-radius: 50%;
  color: var(--color-accent);
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-silver);
  line-height: 1.6;
}

/* Team */
.team-section {
  overflow: hidden;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-charcoal);
  margin: 20px 0 4px;
  padding: 0 16px;
}

.team-role {
  display: block;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
}

/* Certifications */
.certifications-section {
  background: var(--color-light-gray);
}

.certifications-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cert-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base);
}

.cert-logo:hover {
  transform: translateY(-2px);
}

.cert-logo img {
  max-height: 60px;
  width: auto;
  filter: grayscale(50%);
  transition: filter var(--transition-base);
}

.cert-logo:hover img {
  filter: grayscale(0%);
}


/* --------------------------------------------------------------------------
   GALLERY / PROJECTS PAGE — projekte.html
   -------------------------------------------------------------------------- */

.gallery-section {
  padding: var(--section-pad) 0;
}

.filter-bar {
  padding: 24px 0;
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-light-gray);
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
}

.filter-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-warm-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.filter-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* Gallery overlay — flat class names used in projekte.html */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(26, 26, 26, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-category {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.gallery-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* --------------------------------------------------------------------------
   LEGAL PAGES — datenschutz.html, impressum.html, en/privacy.html
   -------------------------------------------------------------------------- */

.legal-content {
  padding: var(--section-pad) 0;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-charcoal);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-charcoal);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--color-warm-gray);
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 20px;
  margin: 12px 0;
}

.legal-content ul li {
  list-style: disc;
  font-size: 0.95rem;
  color: var(--color-warm-gray);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--color-accent);
}

.legal-content a:hover {
  color: var(--color-accent-hover);
}

.legal-date {
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--color-silver);
}

.container-narrow {
  max-width: 800px;
}


/* --------------------------------------------------------------------------
   RESPONSIVE OVERRIDES for flat-named classes
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {

  .nav-links {
    gap: 18px;
  }

  .nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }

  .nav-phone span {
    display: none;
  }

  .nav-cta {
    font-size: 0.75rem;
    padding: 10px 20px;
  }

}

@media (max-width: 1024px) {

  .nav-links {
    gap: 14px;
  }

  .nav-link {
    font-size: 0.7rem;
  }

  .nav-phone {
    display: none;
  }

  .hero .hero-content {
    max-width: 60%;
    padding-left: 40px;
  }

  .why-grid {
    gap: 40px;
  }

  .service-detail-grid {
    gap: 40px;
  }

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

  .story-grid {
    gap: 40px;
  }

  .contact-grid {
    gap: 40px;
  }

}

@media (max-width: 768px) {

  .nav-links,
  .nav-right .nav-phone,
  .nav-right .nav-cta,
  .nav-right .lang-toggle {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero .hero-content {
    max-width: 85%;
    padding-left: 0;
    padding: 0 var(--container-pad);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .scroll-indicator {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-image {
    order: -1;
    max-height: 360px;
  }

  .why-image::after {
    display: none;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-detail-reverse {
    direction: ltr;
  }

  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-legal {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .filter-buttons {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .filter-buttons::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
  }

  /* Gallery overlay always visible on mobile */
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(
      180deg,
      transparent 50%,
      rgba(26, 26, 26, 0.7) 100%
    );
  }

  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 20px 16px;
  }

  .stat-item:nth-child(-n+3) {
    border-bottom: 1px solid rgba(154, 154, 154, 0.15);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(154, 154, 154, 0.15);
  }

  .certifications-row {
    gap: 24px;
  }

}

@media (max-width: 480px) {

  .hero .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.25rem);
  }

  .hero-label {
    font-size: 0.65rem;
    margin-bottom: 16px;
  }

  .gallery-grid {
    columns: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-heading {
    margin-bottom: 16px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px 16px;
  }

  .btn-next,
  .btn-prev,
  .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .form-buttons {
    flex-direction: column;
  }

  .form-buttons .btn {
    width: 100%;
  }

}
