/* ═══════════════════════════════════════════════════════════════════════════
   ELIAS DER COIFFEUR — Premium Hair Atelier
   Refined Parisian Elegance with Feminine Warmth
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  color-scheme: light dark;

  /* Refined radius system */
  --radius-sm: 0.5rem;
  --radius-base: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 999px;

  /* Typography */
  --font-base: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Cormorant Garamond", "Georgia", serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.2s;
  --duration-medium: 0.4s;
  --duration-slow: 0.6s;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LIGHT THEME (Default)
   Farbkonzept: Sattes Salbeigrün (Salon-Wandfarbe), Creme, Holz, Marmor
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Hintergründe – warmes Creme/Beige (wie Boden & Zierleisten) */
  --color-bg: #F5F1E8;
  --color-bg-warm: #EBE5D9;
  
  /* Oberflächen – helles Creme (Marmor-inspiriert) */
  --color-surface: #FAF8F3;
  
  /* Primärfarbe – Sattes Salbeigrün (Salon-Wandfarbe), dunkler */
  --color-primary: #687A56;
  --color-primary-light: #839572;
  --color-primary-dark: #4E5C40;
  --color-primary-decorative: #788A66;
  
  /* Akzentfarbe – Gold/Messing (Zierleisten & Details) */
  --color-accent: #C9A868;
  --color-accent-soft: rgba(201, 168, 104, 0.15);
  
  /* Sekundär & Text – dunkler Marmor/Holzton */
  --color-secondary: #3A3632;
  --color-secondary-soft: #524D47;
  --color-text: #3A3632;
  --color-muted: #6D665D;
  
  /* Rahmen */
  --color-border: rgba(58, 54, 50, 0.12);
  --color-border-warm: rgba(122, 139, 104, 0.4);
  --color-header-bg: rgba(245, 241, 232, 0.95);

  /* Shadows - Light */
  --shadow-soft: 0 4px 20px rgba(58, 54, 50, 0.08);
  --shadow-medium: 0 8px 40px rgba(58, 54, 50, 0.12);
  --shadow-elevated: 0 20px 60px rgba(58, 54, 50, 0.16);
  --shadow-glow: 0 0 40px rgba(122, 139, 104, 0.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   DARK THEME (System Preference)
   Farbkonzept: Sattes Salbeigrün, Gold, dunkler Marmor
   ═══════════════════════════════════════════════════════════════════════════ */

@media (prefers-color-scheme: dark) {
  :root {
    /* Hintergründe – dunkles Grün/Marmor */
    --color-bg: #1E2118;
    --color-bg-warm: #262A1F;
    --color-surface: #2D3127;
    
    /* Primärfarbe – aufgehelltes Salbeigrün */
    --color-primary: #96A786;
    --color-primary-light: #AEBDA0;
    --color-primary-dark: #7C8D6C;
    --color-primary-decorative: #96A786;
    
    /* Akzentfarbe – Gold */
    --color-accent: #E0C88A;
    --color-accent-soft: rgba(224, 200, 138, 0.18);
    
    /* Sekundär & Text – helles Creme */
    --color-secondary: #F5F1E8;
    --color-secondary-soft: #E8E2D6;
    --color-text: #F5F1E8;
    --color-muted: #B8B0A2;
    
    /* Rahmen */
    --color-border: rgba(245, 241, 232, 0.12);
    --color-border-warm: rgba(164, 181, 148, 0.35);
    --color-header-bg: rgba(30, 33, 24, 0.95);

    /* Shadows - Dark */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(164, 181, 148, 0.2);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-weight: 300;
  color: var(--color-secondary);
  background: var(--color-bg);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background var(--duration-medium) var(--ease-out),
              color var(--duration-medium) var(--ease-out);
}

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

a {
  color: inherit;
  text-decoration: none;
}

main {
  min-height: 70vh;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */

.container {
  width: min(100% - 3rem, var(--max-width));
  margin-inline: auto;
}

.split {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.split .card:has(img) {
  max-height: 400px;
}

.split .card:has(img) img {
  max-height: 400px;
}

.split__image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 400px;
}

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

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid--three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--color-header-bg);
  border-bottom: 2px solid var(--color-primary);
  transition: background var(--duration-medium) var(--ease-out);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

.logo__image {
  height: 48px;
  width: auto;
}


.nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-secondary);
}

.nav__link--active {
  color: var(--color-secondary);
  position: relative;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--duration-medium) var(--ease-out);
  position: relative;
  overflow: hidden;
}


.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary:active {
  opacity: 1;
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--color-primary-dark);
  color: var(--color-primary-dark);
}

/* Dark Mode Button Overrides */
@media (prefers-color-scheme: dark) {
  .btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #1E2118;
  }

  .btn-primary:hover {
    box-shadow: 0 12px 40px rgba(164, 181, 148, 0.35);
  }

  .btn-outline {
    border-color: var(--color-border-warm);
    color: var(--color-secondary);
  }

  .btn-outline:hover {
    background: rgba(164, 181, 148, 0.18);
    border-color: var(--color-primary);
  }

  /* Logo: invert dark logo to light for dark backgrounds */
  .logo__image {
    filter: brightness(0) invert(1);
  }

}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: var(--space-lg) 0;
  height: calc(100vh - var(--header-height));
  max-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
  color: #fff;
}

.hero .hero__headline {
  color: #fff;
}

.hero .hero__text {
  color: rgba(255, 255, 255, 0.9);
}

.hero .btn-primary {
  background: linear-gradient(135deg, #FAF8F3 0%, #EBE5D9 100%);
  color: var(--color-primary-dark);
}

.hero .btn-primary:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FULLSCREEN HERO WITH BACKGROUND SLIDESHOW
   ═══════════════════════════════════════════════════════════════════════════ */

.hero--fullscreen {
  background: transparent;
  justify-content: center;
}

/* Slideshow Container */
.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}

.hero__slide--active img {
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

/* Dark Overlay for Text Readability */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(78, 92, 64, 0.85) 0%,
    rgba(58, 54, 50, 0.7) 50%,
    rgba(78, 92, 64, 0.65) 100%
  );
  pointer-events: none;
}

/* Centered Content for Fullscreen Hero */
.hero--fullscreen .hero__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__content--centered {
  max-width: 800px;
  margin: 0 auto;
}

.hero__content--centered .hero__text {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.hero__content--centered .hero__actions {
  justify-content: center;
}

/* Slide Indicators */
.hero__indicators {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.75rem;
}

.hero__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero__indicator:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.3);
}

.hero__indicator--active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.1);
}


/* Compact hero for subpages */
.hero--subpage {
  height: auto;
  max-height: none;
  min-height: auto;
  padding: var(--space-2xl) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
}

.hero--subpage .hero__headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: var(--space-sm) 0 var(--space-sm);
  color: #fff;
}

.hero--subpage .hero__text {
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

@media (prefers-color-scheme: dark) {
  .hero--subpage {
    background: linear-gradient(135deg, #2D3525 0%, #1E2118 100%);
  }
}


.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  animation: fadeInUp 0.8s var(--ease-out) both;
}

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

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin: var(--space-md) 0 var(--space-md);
  color: var(--color-secondary);
  letter-spacing: -0.01em;
}

.hero__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}


/* ═══════════════════════════════════════════════════════════════════════════
   PILL / EYEBROW TAG
   ═══════════════════════════════════════════════════════════════════════════ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-base);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.pill::before,
.pill::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* Pill in hero (light version) */
.hero .pill {
  color: rgba(255, 255, 255, 0.7);
}

.hero--subpage .pill {
  color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

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

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  background: var(--color-bg);
}

.section-divider + .section {
  padding-top: var(--space-lg);
}

.section-divider__line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.section-divider__symbol {
  color: var(--color-accent);
  font-size: 1rem;
}

.section__header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.section__eyebrow {
  font-family: var(--font-base);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.section__eyebrow::before {
  display: none;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 var(--space-sm);
  color: var(--color-secondary);
  letter-spacing: -0.01em;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  margin: 0 auto;
  max-width: 540px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════════════════ */

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: border-color var(--duration-medium) var(--ease-out),
              box-shadow var(--duration-medium) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--color-border-warm);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  margin: 0 0 var(--space-sm);
  color: var(--color-secondary);
}

.card p {
  color: var(--color-muted);
  margin: 0;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════════════════════════ */

.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
}

.service-card::before {
  display: none; /* Remove default card top-line hover */
}

.service-card:hover {
  transform: none;
  box-shadow: var(--shadow-soft);
}

.service-card__image {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.service-card__content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__content h3 {
  margin-bottom: 0.75rem;
}

.service-card__content p {
  margin: 0;
  line-height: 1.6;
}

.service-card__price {
  margin-top: auto !important;
  padding-top: var(--space-sm);
  font-weight: 500;
  color: var(--color-primary);
  font-size: 0.9rem;
}


/* ═══════════════════════════════════════════════════════════════════════════
   GOOGLE REVIEWS
   ═══════════════════════════════════════════════════════════════════════════ */

.google-reviews__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-full);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  margin: 0 auto var(--space-lg);
  width: fit-content;
  transition: border-color var(--duration-medium) var(--ease-out),
              box-shadow var(--duration-medium) var(--ease-out);
  text-decoration: none;
  color: inherit;
}

.google-reviews__badge:hover {
  border-color: var(--color-border-warm);
  box-shadow: var(--shadow-soft);
}

.google-reviews__logo {
  flex-shrink: 0;
}

.google-reviews__rating {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.google-reviews__score {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-secondary);
  line-height: 1;
}

.google-reviews__stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
}

.google-reviews__count {
  font-size: 0.8125rem;
  color: var(--color-muted);
  white-space: nowrap;
}

/* Review carousel wrapper */
.google-reviews__carousel {
  position: relative;
}

.google-reviews__arrows {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.google-reviews__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--duration-medium) var(--ease-out),
              box-shadow var(--duration-medium) var(--ease-out);
}

.google-reviews__arrow:hover {
  border-color: var(--color-border-warm);
  box-shadow: var(--shadow-soft);
}

/* Review cards – horizontal scroll, 3 visible at a time */
.google-reviews__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--space-xs) 0;
  width: min(100% - 3rem, var(--max-width));
  margin-inline: auto;
}

.google-reviews__track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((min(100vw - 3rem, var(--max-width)) - 2 * var(--space-md)) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--duration-medium) var(--ease-out),
              box-shadow var(--duration-medium) var(--ease-out);
}

.review-card:hover {
  border-color: var(--color-border-warm);
  box-shadow: var(--shadow-soft);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
}

.review-card__text {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-secondary);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card__author {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  text-transform: uppercase;
  margin: auto 0 0;
  padding-top: var(--space-xs);
}

@media (max-width: 640px) {
  .google-reviews__badge {
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
  }

  .google-reviews__rating {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .google-reviews__count {
    width: 100%;
  }

  .google-reviews__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: var(--space-xs) 1.5rem;
    width: 100%;
  }

  .google-reviews__track::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 calc(100vw - 3rem);
    scroll-snap-align: center;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   CONVICTION BLOCK (Philosophie)
   ═══════════════════════════════════════════════════════════════════════════ */

.conviction {
  max-width: 740px;
  margin: 0 auto;
}

.conviction__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-primary);
  margin: 0 0 var(--space-lg);
  padding-left: var(--space-md);
  border-left: 2px solid var(--color-accent);
}

.conviction__body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-secondary);
  margin: 0 0 var(--space-md);
}

.conviction__body p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT ELIAS (Portrait Section)
   ═══════════════════════════════════════════════════════════════════════════ */

.about-elias {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-elias__image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-surface);
}

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

.about-elias__content {
  max-width: 500px;
}

.about-elias__content .section__eyebrow {
  margin-bottom: var(--space-xs);
}

.about-elias__content .section__title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.about-elias__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-muted);
  margin: 0 0 var(--space-sm);
}

.about-elias__text:last-of-type {
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .about-elias {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .about-elias__image {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-elias__content {
    max-width: 100%;
  }

  .about-elias__content .section__title {
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ATELIER INTRO (Education Section)
   ═══════════════════════════════════════════════════════════════════════════ */

.atelier-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.atelier-intro__item {
  padding: var(--space-lg) var(--space-md);
}

.atelier-intro__symbol {
  display: block;
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  letter-spacing: 0;
}

.atelier-intro__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary);
}

.atelier-intro__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 400;
  margin: 0 0 var(--space-sm);
  color: var(--color-secondary);
}

.atelier-intro__text {
  font-size: 1rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .atelier-intro {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .atelier-intro__item {
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
  }

  .atelier-intro__item:last-child {
    border-bottom: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROCESS STEPS (Timeline)
   ═══════════════════════════════════════════════════════════════════════════ */

.process-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.process-card {
  position: relative;
  max-width: 520px;
  padding: var(--space-md) var(--space-lg);
}

.process-card:nth-child(odd) {
  margin-right: auto;
  text-align: left;
  padding-left: 5.5rem;
}

.process-card:nth-child(even) {
  margin-left: auto;
  text-align: right;
  padding-right: 5.5rem;
}

.process-card__bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 400;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.process-card:nth-child(odd) .process-card__bg {
  left: 0;
}

.process-card:nth-child(even) .process-card__bg {
  right: 0;
}

.process-card__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--color-secondary);
}

.process-card__text {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .process-flow {
    gap: var(--space-md);
  }

  .process-card {
    max-width: 100%;
    padding: var(--space-sm) var(--space-md);
  }

  .process-card:nth-child(odd),
  .process-card:nth-child(even) {
    margin: 0;
    text-align: left;
  }

  .process-card__bg {
    font-size: 4rem;
    right: 0 !important;
    left: auto !important;
  }
  
  .process-card__title {
    font-size: 1.375rem;
  }
  
  .process-card__text {
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA CLEAN (Open Style)
   ═══════════════════════════════════════════════════════════════════════════ */

.cta-clean {
  text-align: center;
  padding: var(--space-lg) 0;
}

.cta-clean__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 var(--space-xs);
  color: var(--color-secondary);
}

.cta-clean__text {
  font-size: 1.0625rem;
  color: var(--color-muted);
  margin: 0 0 var(--space-lg);
}

.cta-clean__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.cta-clean__meta {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 640px) {
  .cta-clean__meta {
    font-size: 0.8125rem;
    line-height: 1.8;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRICE LIST (Services Page) – Restaurant Menu Style
   ═══════════════════════════════════════════════════════════════════════════ */

.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.price-list__section {
  padding: var(--space-md) 0;
}

.price-list__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 var(--space-md);
  padding-bottom: var(--space-sm);
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-primary);
}

.price-list__items {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.price-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-item__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.375rem;
  margin-bottom: -0.25rem;
}

.price-item__label:first-child {
  margin-top: 0;
}

.price-item__name {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--color-secondary);
}

.price-item__note {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.price-item__dots {
  flex: 1;
  border-bottom: 1px dotted var(--color-border);
  min-width: 20px;
  margin-bottom: 4px;
}

.price-item__price {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary);
  white-space: nowrap;
}

/* Info Bar */
.price-info-bar {
  text-align: center;
  margin-top: var(--space-lg);
}

.price-info-bar__text {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.price-info-bar__text strong {
  font-weight: 500;
  color: var(--color-secondary);
}

.price-info-bar__divider {
  margin: 0 0.5rem;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .price-list {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .price-item__name {
    font-size: 0.9375rem;
  }
  
  .price-item__price {
    font-size: 1rem;
  }
  
  .price-info-bar__text {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .price-info-bar__divider {
    display: block;
    margin: 0.125rem 0;
    opacity: 0;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, #3A4530 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: auto;
  position: relative;
}

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

.footer__main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: var(--space-md);
  transition: opacity var(--duration-fast) var(--ease-out);
}

.footer__logo:hover {
  opacity: 0.85;
}

.footer__logo img {
  height: 60px;
  width: auto;
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__title {
  font-family: var(--font-base);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  transition: color var(--duration-fast) var(--ease-out);
  text-decoration: none;
}

.footer__links a:hover {
  color: #fff;
}

.footer__address {
  font-style: normal;
  margin-bottom: var(--space-sm);
}

.footer__address a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.6;
  transition: color var(--duration-fast) var(--ease-out);
  text-decoration: none;
  display: block;
}

.footer__address a:hover {
  color: #fff;
}

.footer__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.375rem 1rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer__hours span:nth-child(odd) {
  color: rgba(255, 255, 255, 0.6);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITIES & MISC
   ═══════════════════════════════════════════════════════════════════════════ */

.map-frame {
  border: none;
  width: 100%;
  min-height: 320px;
  border-radius: var(--radius-lg);
}

.contact-card {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-top: 0;
}


.legal-text {
  white-space: pre-line;
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg) var(--space-xl);
  max-width: 860px;
}

.legal-block__title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 0.5rem;
}

.legal-block p,
.legal-block address {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-secondary);
  margin: 0 0 0.5rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

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

@media (max-width: 640px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 0.875rem 1.5rem;
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

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

.cookie-banner__text {
  margin: 0;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.375rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}

.cookie-banner__btn--accept {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cookie-banner__btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner__btn--decline:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    gap: 0.75rem;
  }
}

.accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
}

.accordion details {
  border-bottom: 1px solid var(--color-border);
}

.accordion details:last-of-type {
  border-bottom: none;
}

.accordion summary {
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  font-weight: 500;
  transition: color var(--duration-fast) var(--ease-out);
}

.accordion summary:hover {
  color: var(--color-primary);
}

.accordion p {
  padding: 0 var(--space-md) var(--space-md);
  margin: 0;
  color: var(--color-muted);
}


/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════════════════════ */

.form-intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field span {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.field input,
.field textarea {
  border: 1px solid var(--color-border);
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-surface);
  color: var(--color-secondary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.7;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.field--checkbox input {
  margin-top: 0.3rem;
}

.contact-form__submit {
  width: fit-content;
}

.microcopy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.mobile-toggle:hover {
  background: var(--color-accent-soft);
  border-color: var(--color-border-warm);
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  /* Fullscreen hero adjustments */
  .hero__content--centered {
    max-width: 90%;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    background-color: var(--color-bg) !important;
    z-index: 999;
  }

  .nav.is-open {
    display: flex;
  }

  .nav__link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-secondary);
    padding: var(--space-xs) 0;
  }

  .nav__link:hover,
  .nav__link--active {
    color: var(--color-primary);
  }

  .nav__link::after {
    display: none;
  }

  .nav .btn-primary {
    margin-top: var(--space-sm);
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    position: relative;
  }

  .nav.is-open ~ .mobile-toggle,
  .mobile-toggle[aria-expanded="true"] {
    position: fixed;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 1001;
  }
}

@media (max-width: 900px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__brand {
    max-width: none;
    text-align: center;
  }

  .footer__logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
  }

  .hero {
    height: auto;
    max-height: none;
    min-height: calc(100vh - var(--header-height));
    padding: var(--space-lg) 0;
  }

  .hero--fullscreen {
    min-height: calc(100vh - var(--header-height));
  }

  .hero__headline {
    font-size: 2rem;
  }

  .hero__content .hero__text {
    display: none;
  }

  .hero__indicators {
    bottom: var(--space-md);
  }

  .hero__indicator {
    width: 10px;
    height: 10px;
  }

  .footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer__col:last-child {
    grid-column: span 2;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

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

  .footer__col:last-child {
    grid-column: span 1;
  }
}
