/* ============================================================
   LANDING.CSS — Psychologische Beratung für Frauen
   Base structure + CSS variables — no visual customization yet
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (ROOT VARIABLES)
   ------------------------------------------------------------ */
:root {
    /* --- Brand Colors (to be customized) --- */
    --color-red:        #8C3730;
    --color-brown:      #423928;
    --color-blue:       #6f7a8a;
    --color-white:      #fbfbfb;
    --color-blue20: rgba(111, 122, 138, 0.1);
    --color-white20: rgba(255, 255, 255, 0.2);
    --color-white40: rgba(255, 255, 255, 0.4);

    /* --- Neutrals --- */
    --color-bg:             #D6DCDF;



    /* --- Text --- */
    --color-text:           #6F7A8A;


    /* --- Typography --- */
    --font-display: 'Almarai', serif;
    --font-body:    'Almarai', sans-serif;
    --font-accent: 'Literata', serif;

    --text-xs:    0.75rem;
    --text-sm:    0.875rem;
    --text-base:  1rem;
    --text-md:    1.125rem;
    --text-lg:    1.25rem;
    --text-xl:    1.5rem;
    --text-2xl:   2rem;
    --text-3xl:   2.5rem;
    --text-4xl:   3.5rem;
    --text-5xl:   5rem;

    --leading-tight:  1.15;
    --leading-snug:   1.35;
    --leading-base:   1.6;
    --leading-loose:  1.85;


    /* --- Spacing --- */
    --space-1:   0.25rem;
    --space-2:   0.5rem;
    --space-3:   0.75rem;
    --space-4:   1rem;
    --space-5:   1.25rem;
    --space-6:   1.5rem;
    --space-8:   2rem;
    --space-10:  2.5rem;
    --space-12:  3rem;
    --space-16:  4rem;
    --space-20:  5rem;
    --space-24:  6rem;
    --space-32:  8rem;

    /* --- Layout --- */
    --container-max:    1440px;
    --container-narrow: 920px;
    --container-wide:   1320px;
    --container-px:     var(--space-6);

    /* --- Borders --- */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   16px;
    --radius-xl:   24px;
    --radius-full: 9999px;
    --border-width: 1px;
    --border-width-md: 2px;

    /* --- Shadows --- */
    --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
    --shadow-xl:  0 24px 64px rgba(0,0,0,0.18);

    /* --- Transitions --- */
    --transition-fast:   150ms ease;
    --transition-base:   250ms ease;
    --transition-slow:   400ms ease;
    --transition-slower: 650ms cubic-bezier(0.16, 1, 0.3, 1);

    /* --- Z-index --- */
    --z-base:    0;
    --z-raised:  10;
    --z-overlay: 100;
    --z-nav:     200;
    --z-sticky:  400;
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(var(--text-md), 1.5vw, var(--text-lg));
  line-height: var(--leading-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

main {

}

strong {
  font-weight: 500;
  color: var(--color-red);
}

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

ul, ol { list-style: none; }

input, textarea, select { font-family: inherit; font-size: inherit; }

/* ------------------------------------------------------------
   3. LAYOUT
   ------------------------------------------------------------ */
.container { 
  width: 100%;
  max-width: var(--container-max); 
  margin-inline: auto; 
  padding-inline: var(--container-px); 
}

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

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

.section      { 
  padding-block: var(--space-20); 
}

.section--sm  { 
  padding-block: var(--space-12); 
}

.section--lg  { 
  padding-block: var(--space-32); 
}

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

.divider {
  height: 20px;
  background-color: var(--color-white20);
}

.section-divider {
  width: 80px;
  height: 1px;
  background: rgba(111, 122, 138, 0.2);
  margin-inline: auto;
}

.section-divider-2 {
  width: 80px;
  height: 1px;
  background: var(--color-bg);
  margin-inline: auto;
}

@media (max-width: 640px) {

  .container {
    padding-inline: var(--space-4);
  }

  .section { 
    padding-block: var(--space-10); 
  }

}

/* ------------------------------------------------------------
   4. TYPOGRAPHY UTILITIES
   ------------------------------------------------------------ */
h1 { 
    font-family: var(--font-display); 
    font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl)); 
    line-height: var(--leading-tight); 
    letter-spacing: var(--tracking-tight); 
    font-weight: 300;
    text-transform: uppercase;
}

h2 { 
    font-family: var(--font-display); 
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl)); 
    line-height: var(--leading-tight); 
    font-weight: 300;
    margin:0;
    margin-bottom: var(--space-20);
}

.h3 { 
    font-family: var(--font-display);
    font-size: var(--text-2xl); 
    line-height: var(--leading-snug);
}

.h4 { 
    font-family: var(--font-display); 
    font-size: var(--text-xl); 
}

.body-lg  { 
    font-size: var(--text-md); 
    line-height: var(--leading-base); 
}

.body-sm  { 
    font-size: var(--text-sm); 
    line-height: var(--leading-base); 
}

.caption  { 
    font-size: var(--text-xs); 
    letter-spacing: var(--tracking-wider); 
    text-transform: uppercase; 
    color: var(--color-text-muted); 
}


.text-center  { text-align: center; }
.italic       { font-style: italic; }


@media (max-width: 640px) {

  h2 { 
      margin-bottom: var(--space-10);
  }


}


/* ------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------ */

.btn--primary {
  display: inline-block;
  background-color: var(--color-red);
  color: #fff;
  font-size: var(--text-xl);
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  transition: opacity var(--transition-base);
}

.btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

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

/*

.btn-whatsapp {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-sticky);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: var(--color-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.btn-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-xl);
}
*/


.hero__scroll-btn {
  display: inline-block;
  margin-top: var(--space-6);
  color: var(--color-red);
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-red);
  padding-bottom: 2px;
  transition: opacity var(--transition-base), border-color var(--transition-base);
}

.hero__scroll-btn:hover {
  opacity: 0.7;
}

/* ------------------------------------------------------------
   CTA WHATSAPP INLINE
   ------------------------------------------------------------ */
.cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-size: var(--text-md);
  color: var(--color-text);
  opacity: 1;
  transition: opacity var(--transition-base);
}

.cta-whatsapp:hover {
  opacity: 1;
}

.cta-whatsapp svg {
  flex-shrink: 0;
  color: var(--color-text);
}


@media (max-width: 640px) {

  .btn--primary {
    width: 100%;
    font-size: var(--text-lg);
    text-align: center;
    padding: var(--space-4) var(--space-4);
    box-sizing: border-box;
  }

  .hero__scroll-btn {
    display: none;
  }

  .cta-whatsapp {
    font-size: var(--text-base);
    margin-top: var(--space-4);
  }

}


/* ------------------------------------------------------------
   STICKY BAR MOBILE
   ------------------------------------------------------------ */
.sticky-bar {
  display: none;
}

@media (max-width: 640px) {
  
  .begleitung__cta,
  .ablauf__cta {
    display: none;
  }

   /* Mostra solo quando cookie banner è attivo e sticky bar è bloccata */
  body.cookie-active .begleitung__cta,
  body.cookie-active .ablauf__cta {
    display: block;
  }

}

@media (max-width: 640px) {
  .sticky-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--color-white40);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.10);
    padding: var(--space-4);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
  }

  .sticky-bar--visible {
    transform: translateY(0);
  }

  .sticky-bar__inner {
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }

  .sticky-bar__primary {
    flex: 1;
    text-align: center;
    font-size: var(--text-base);
    padding: var(--space-3) var(--space-4);
  }

  .sticky-bar__whatsapp {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background-color: var(--color-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: opacity var(--transition-base);
  }

  .sticky-bar__whatsapp:hover {
    opacity: 0.85;
  }
}

/* ------------------------------------------------------------
   6. NAV
   ------------------------------------------------------------ */

.nav {
   /*position: fixed;*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding-block: var(--space-4);
}


.nav__inner {
    width: 100%;
    display: flex;
    align-items: center;
    max-width: var(--container-max);
    margin-inline: auto;
}

.nav__logo img {
  height: 95px;
  width: auto;
  /*filter: invert(49%) sepia(11%) saturate(558%) hue-rotate(169deg) brightness(89%) contrast(87%);*/
  filter: brightness(0) invert(1);
}


.nav {
    display: none;
}

@media (max-width: 640px) {
    .nav {
        display: block;
    }

    .nav__logo img {
      height: 50px;
    }
}




/* ------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------ */

.hero {
  position: relative;
  width: 100vw;
  height: auto;
  aspect-ratio: 16 / 7;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hero__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% bottom;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: left;
  color: var(--color-red);
  padding-inline: var(--space-6);
  padding-left: 33%;
  width: var(--container-max);
  max-width: var(--container-max);
}

.hero__content::before {
    content: '';
    display: block;
    width: auto;
    height: 85px;
    aspect-ratio: 307.75 / 95;
    background-image: url('../img/polina-goldberg-logo.svg');
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
    margin-bottom: var(--space-6);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 6vw, var(--text-4xl));
  text-transform: uppercase;
  line-height: var(--leading-tight);
  margin:0;
  margin-bottom: var(--space-2);
}

.hero__sub {
  font-size: clamp(var(--text-md), 2vw, var(--text-2xl));
  font-weight: 300;
  line-height: var(--leading-loose);
  margin:0;
}


@media (min-width: 1000px) and (max-width: 1600px) {
  .hero__content {
    padding-left: 40%;
  }
}

@media (min-width: 550px) and (max-width: 640px) {
  .hero__content {
    padding-left: 35%;
  }
}

@media (max-width: 550px) {
  .hero__content {
    padding-left: 25%;
  }
}

@media (max-width: 640px) {
  .hero {
    height: 50vh;
    min-height: unset;
    padding-top: 6%;
  }

  .hero__content::before {
        display: none;
  }
}


/* ------------------------------------------------------------
   HOOK / VALUE PROPOSITION
   ------------------------------------------------------------ */
.hook {
  text-align: center;
}

.hook__text {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
  font-weight: 300;
  line-height: var(--leading-loose);
  color: var(--color-text);
  margin: 0 auto var(--space-10);
}



.hook__note {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
  font-style: italic;
}


@media (max-width: 640px) {
  .hook__text {
    margin-bottom: var(--space-8);
  }

  .hook__note {
    padding-inline: 0;
  }
}




/* ------------------------------------------------------------
   PROBLEM / EMPATHY
   ------------------------------------------------------------ */
.problem__title {

}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.problem__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

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

.problem__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.problem__text p {
  margin: 0;
  line-height: var(--leading-loose);
}

.problem__closing {

}

.problem__closing em {
  font-style: italic;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 640px) {
  .problem__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .problem__img-wrap {
    aspect-ratio: 3 / 2;
  }

  .problem__title {
    margin-bottom: var(--space-8);
  }

  .problem__text {
    gap: var(--space-4);
  }

}



/* ------------------------------------------------------------
   FÜR DICH
   ------------------------------------------------------------ */
.fuer-dich {
  background-color: var(--color-white20);
}

.fuer-dich__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  text-align: center;
}

.fuer-dich__list li {
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  font-weight: 300;
  line-height: var(--leading-snug);
  color: var(--color-text);
}

.fuer-dich__list li:not(:last-child)::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: rgba(111, 122, 138, 0.3);
  margin: var(--space-6) auto 0;
}

.fuer-dich__list li:last-child {
  padding-bottom: 0;
}


/* ------------------------------------------------------------
   SO BEGLEITE ICH DICH
   ------------------------------------------------------------ */
.begleitung__title {
  /* già gestito da h2 + text-center */
}

.begleitung__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.begleitung__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

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

.begleitung__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  text-align: left; /* <-- testo a sinistra */
}

.begleitung__text p {
  margin: 0;
  line-height: var(--leading-loose);
}

.begleitung__results {
  margin: var(--space-4) 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: center;
}

.begleitung__results li {
  font-family: var(--font-accent);
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  font-weight: 400;
  color: var(--color-brown);
  line-height: var(--leading-snug);
}


.begleitung__cta {
  text-align: center;
  margin-top: var(--space-12);
}


/* Mobile */
@media (max-width: 640px) {
  .begleitung__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .begleitung__img-wrap {
    aspect-ratio: 3 / 2;
    order: -1; 
  }

  .begleitung__cta {
    margin-top: var(--space-8);
  }
}

/* ------------------------------------------------------------
   ÜBER MICH
   ------------------------------------------------------------ */

.ueber-mich {

}

.ueber-mich__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.ueber-mich__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.ueber-mich__text p {
  margin: 0;
  line-height: var(--leading-loose);
}

.ueber-mich__name {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  line-height: var(--leading-tight) !important;
  font-weight: 300;
  color: var(--color-red);
}

.ueber-mich__role {
  font-size: var(--text-sm) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 1;
}

.ueber-mich__closing {
  color: var(--color-brown);
  font-family: var(--font-accent);
  font-weight: 400;
}


.ueber-mich__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.ueber-mich__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}


@media (max-width: 1024px) {
  .ueber-mich__grid {
    grid-template-columns: 2fr 1fr;
  }
}


/* Mobile — foto prima, poi testo */
@media (max-width: 640px) {
  .ueber-mich__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .ueber-mich__img-wrap {
    order: -1;
    aspect-ratio: 1 / 1;
    max-height: unset;
  }
}




/* ------------------------------------------------------------
   SO LÄUFT ES AB
   ------------------------------------------------------------ */

.ablauf {
  background-color: var(--color-white20);
}

.ablauf__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-16);
}

.ablauf__step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
  padding-block: var(--space-8);
  border-bottom: 1px solid rgba(111, 122, 138, 0.2);
}

.ablauf__step:first-child {
  border-top: 1px solid rgba(111, 122, 138, 0.2);
}

.ablauf__step-num {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: 300;
  color: rgba(111, 122, 138, 0.25);
  line-height: 1;
  min-width: 3.5rem;
  padding-top: 2px;
}

.ablauf__step-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.ablauf__step-title {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  font-weight: 600;
  color: var(--color-brown);
  line-height: var(--leading-snug);
}

.ablauf__step-desc {
  margin: 0;
  font-size: var(--text-md);
  line-height: var(--leading-base);
  color: var(--color-text);
}

.ablauf__step-duration {
  font-size: var(--text-md);
  color: var(--color-red);
  opacity: 1;
}


/* CTA */
.ablauf__cta {
  text-align: center;
  margin-top: var(--space-12);
}

/* Mobile */
@media (max-width: 640px) {
  .ablauf__step {
    gap: var(--space-5);
    padding-block: var(--space-6);
  }

  .ablauf__step-num {
    min-width: 2.5rem;
  }


  .ablauf__cta {
    margin-top: var(--space-8);
  }
}



/* ------------------------------------------------------------
   TESTIMONIALS — Was meine Klientinnen sagen
   ------------------------------------------------------------ */

.stimmen__intro {
  text-align: center;
  margin-bottom: var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.stimmen__intro p {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  font-weight: 400;
  color: var(--color-brown);
  line-height: var(--leading-snug);
}


/* Carousel wrapper */
.stimmen__carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.stimmen__track-wrap {
  overflow: hidden;
  width: 100%;
}

.stimmen__track {
  display: flex;
  gap: var(--space-6);
  margin: 0;
  padding: var(--space-2) 0 var(--space-4);
  list-style: none;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  cursor: grab;
}

.stimmen__track:active {
  cursor: grabbing;
}

/* Card */
.stimmen__card {
  flex: 0 0 calc(33.333% - var(--space-4));
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(111, 122, 138, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.stimmen__card blockquote {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  height: 100%;
}

.stimmen__card blockquote p {
  margin: 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(var(--text-base), 1.5vw, var(--text-md));
  font-weight: 400;
  line-height: var(--leading-loose);
  color: var(--color-text);
  flex: 1;
}

.stimmen__card blockquote footer {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-red);
  opacity: 0.8;
}

/* Arrows */
.stimmen__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(111, 122, 138, 0.25);
  background: rgba(255,255,255,0.5);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-base), border-color var(--transition-base), opacity var(--transition-base);
  z-index: 2;
}

.stimmen__arrow:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(111, 122, 138, 0.4);
}

.stimmen__arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

/* Dots */
.stimmen__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
}

.stimmen__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(111, 122, 138, 0.25);
  transition: background var(--transition-base), transform var(--transition-base);
  cursor: pointer;
}

.stimmen__dot--active {
  background: var(--color-red);
  transform: scale(1.3);
}

/* Mobile */
@media (max-width: 1024px) {
  .stimmen__card {
    flex: 0 0 calc(50% - var(--space-3));
  }
}

@media (max-width: 640px) {
  .stimmen__intro {
    margin-bottom: var(--space-10);
  }

  .stimmen__arrow {
    display: none;
  }

  .stimmen__track {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: default;
  }

  .stimmen__track::-webkit-scrollbar {
    display: none;
  }

  .stimmen__card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .stimmen__dots {
    display: none;
  }

}


/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
   
.faq {
  background-color: var(--color-white20);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(111, 122, 138, 0.2);
}

.faq__item:first-child {
  border-top: 1px solid rgba(111, 122, 138, 0.2);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  background: none;
  border: none;
  padding: var(--space-8) 0;
  font-family: var(--font-accent);
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  font-weight: 600;
  color: var(--color-brown);
  line-height: var(--leading-snug);
  text-align: left;
  cursor: pointer;
  transition: opacity var(--transition-base);
}

.faq__question:hover {
  opacity: 0.75;
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--color-red);
  transition: transform var(--transition-base);
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__answer-wrap > .faq__answer {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.is-open .faq__answer-wrap {
  grid-template-rows: 1fr;
}

.faq__item.is-open .faq__answer-wrap > .faq__answer {
  padding-bottom: var(--space-6);
}

.faq__answer {
  margin: 0;
  font-size: var(--text-md);
  line-height: var(--leading-base);
  color: var(--color-text);
}

@media (max-width: 640px) {
  .faq__question {
    padding: var(--space-6) 0;
  }

  .faq__item.is-open .faq__answer-wrap > .faq__answer {
    padding-bottom: var(--space-5);
  }
}

/* ------------------------------------------------------------
   BEREIT
   ------------------------------------------------------------ */

.bereit__title {
  color: var(--color-red);
}

.bereit__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  text-align: center;
}

.bereit__text p {
  margin: 0;
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  font-weight: 300;
  line-height: var(--leading-loose);
  color: var(--color-text);
}





/* ------------------------------------------------------------
   KONTAKT
   ------------------------------------------------------------ */
.kontakt {
  background-color: var(--color-blue);
}

.kontakt .h2 {
  color: var(--color-white);
}


.kontakt__intro {
  margin: 0 auto var(--space-10);
  text-align: center;
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  color: var(--color-white);
}

.kontakt__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  box-shadow: var(--shadow-xl);
}

.kontakt__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.kontakt__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  position: relative;
}



.kontakt__label {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-base);
  color: var(--color-text);
  opacity: 0.6;
  pointer-events: none;
  transition: all var(--transition-base);
  transform-origin: left top;
}

.kontakt__textarea ~ .kontakt__label {
  top: var(--space-4);
  transform: none;
}

.kontakt__optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text);
  font-size: var(--text-xs);
}

.kontakt__input {
  width: 100%;
  padding: var(--space-6) var(--space-4) var(--space-2);
  border: 1px solid rgba(111, 122, 138, 0.3);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-brown);
  font-size: var(--text-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}

.kontakt__input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(111, 122, 138, 0.15);
}



/* Label flottante — campo attivo o compilato */
.kontakt__input:focus ~ .kontakt__label,
.kontakt__input:not(:placeholder-shown) ~ .kontakt__label {
  top: var(--space-2);
  transform: translateY(0) scale(0.75);
  opacity: 1;
  color: var(--color-blue);
  font-size: var(--text-sm);
}

.kontakt__textarea:focus ~ .kontakt__label,
.kontakt__textarea:not(:placeholder-shown) ~ .kontakt__label {
  top: var(--space-2);
  transform: scale(0.75);
  opacity: 1;
  color: var(--color-blue);
}

.kontakt__optional {
  font-size: var(--text-xs);
  opacity: 0.7;
}



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

.kontakt__submit {
  margin-top: var(--space-4);
  width: 100%;
  text-align: center;
}

.kontakt__note {
  margin: var(--space-6) 0 0;
  text-align: center;
  font-size: var(--text-base);
  color: var(--color-text);
  opacity: 1;
}

/* Mobile */
@media (max-width: 640px) {
  .kontakt__card {
    padding: var(--space-8) var(--space-6);
  }
}


/* Validazione campi */
.kontakt__input--error {
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(140, 55, 48, 0.12);
}

.field-error {
    margin: var(--space-2) 0 0 var(--space-4);
    font-size: var(--text-sm);
    color: var(--color-red);
    line-height: var(--leading-snug);
}

.form-error {
    margin-top: var(--space-4);
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-red);
    line-height: var(--leading-snug);
}


/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  background-color: var(--color-bg);
  padding-block: var(--space-20);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
}

.footer__copy {
  font-size: var(--text-sm);
  color: var(--color-text);
  opacity: 0.6;
}

.footer__links {
  display: flex;
  gap: var(--space-6);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-text);
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.footer__links a:hover {
  opacity: 1;
}




/* ------------------------------------------------------------
   DANKE PAGE
   ------------------------------------------------------------ */
.danke-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.danke {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8);
}

.danke__logo {
  height: 60px;
  width: auto;
  margin-bottom: var(--space-12);
  opacity: 0.7;
}

.danke__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: 300;
  color: var(--color-red);
  margin: 0 0 var(--space-6);
  line-height: var(--leading-tight);
}

.danke__text {
  font-family: var(--font-accent);
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  font-weight: 400;
  line-height: var(--leading-loose);
  color: var(--color-brown);
  max-width: 520px;
  margin: 0 auto var(--space-10);
}

.danke__back {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-blue);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.danke__back:hover {
  opacity: 1;
}

/* ------------------------------------------------------------
   COOKIE BANNER
   ------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--color-white);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  color: var(--color-brown);
  border-radius: var(--radius-lg);
  z-index: var(--z-sticky);
  padding: var(--space-5) var(--space-6);
  transition: transform var(--transition-slow);
}

.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.cookie-banner__text {
  flex: 1;
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  color: var(--color-brown);
  margin: 0;
}

.cookie-banner__text a {
  color: var(--color-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover { opacity: 0.8; }

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.cookie-btn--accept,
.cookie-btn--decline {
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity var(--transition-base);
  white-space: nowrap;
}

.cookie-btn--accept {
  background: var(--color-red);
  color: #fff;
  border: none;
}

.cookie-btn--decline {
  background: transparent;
  color: var(--color-brown);
  border: 1px solid rgba(66, 57, 40, 0.3);
}

.cookie-btn--accept:hover,
.cookie-btn--decline:hover { opacity: 0.75; }

/* Mobile */
@media (max-width: 640px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    transform: translateY(140%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: var(--space-5) var(--space-5) var(--space-6);
  }

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

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
  }

  .cookie-banner__text {
    font-size: var(--text-xs);
    line-height: var(--leading-base);
  }

  .cookie-banner__actions {
    flex-direction: column;
    gap: var(--space-2);
  }

  .cookie-btn--accept,
  .cookie-btn--decline {
    width: 100%;
    text-align: center;
    padding: var(--space-4);
  }
}