/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-bg-main: #fff8f3;
  --color-bg-panel: #fdf5ee;
  --color-accent: #d7aa63;
  --color-rose: #e8a9bd;
  --color-rose-deep: #b44c6d;
  --color-ink: #352625;
  --color-ink-soft: #6c524d;
  --color-border-subtle: rgba(173, 138, 108, 0.28);
  --shadow-soft: 0 22px 55px rgba(110, 75, 61, 0.22);
  --radius-lg: 1.6rem;
  --radius-md: 1.1rem;
  --radius-pill: 999px;
  --transition-fast: 150ms ease-out;
  --transition-med: 230ms ease-out;
}

html {
  scroll-behavior: smooth;
  background: #fbe3d7;   /* nur eine ruhige Grundfarbe */
  overflow-x: hidden;
}



body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  background: transparent;   /* wichtig */
  position: relative;
  overflow-x: hidden;
}


#water-bg {
  position: fixed;
  inset: 0;
  z-index: 0;              /* statt -3 */
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 169, 189, 0.75), transparent 62%),
    radial-gradient(circle at 100% 100%, rgba(215, 170, 99, 0.75), transparent 65%),
    radial-gradient(circle at 85% 20%, rgba(255, 239, 222, 0.75), transparent 60%),
    radial-gradient(circle at 20% 85%, rgba(250, 229, 212, 0.75), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(198, 146, 112, 0.55), transparent 70%),
    linear-gradient(180deg, #fff8f3, #f7ddcc);
  background-size: 260% 260%;
  animation: gggBgFlow 10s ease-in-out infinite alternate;
  background-repeat: no-repeat;
}

/* Texte dürfen bei großer Systems-Schrift umbrechen */
body,
h1,
h2,
h3,
p,
label,
button,
input,
select,
textarea,
summary {
  word-wrap: break-word;
  overflow-wrap: anywhere;
}


/* Body fix, wenn Lightbox offen */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-ink);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
.brand,
.footer-brand {
  font-family: "Playfair Display", "Times New Roman", serif;
}

/* Überschriften zentriert */
h1,
h2,
h3 {
  text-align: center;
}

/* Fließtexte zentriert, Listen links */
body p {
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

.section {
  padding: 4.6rem 0;
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 2.7rem;
}

.section-header h2 {
  font-size: 2.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-rose), var(--color-accent));
  opacity: 0.9;
}

.section-header p {
  margin: 0;
  color: var(--color-ink-soft);
}

/* Listen linksbündig */
.bullet-list,
.service-list,
.steps-list {
  text-align: left;
}

/* ---------- Globaler Hintergrund ---------- */



@keyframes gggBgFlow {
  0% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 50% 0%;
  }
  25% {
    background-position: 30% 10%, 80% 70%, 20% 60%, 50% 20%;
  }
  50% {
    background-position: 60% 40%, 40% 90%, 80% 30%, 50% 40%;
  }
  75% {
    background-position: 20% 80%, 10% 40%, 60% 80%, 50% 60%;
  }
  100% {
    background-position: 100% 0%, 0% 100%, 50% 90%, 50% 80%;
  }
}

/* Glow Dust */
.glow-dust {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0, transparent 55%),
    radial-gradient(circle, rgba(255, 231, 212, 0.6) 0, transparent 60%);
  background-size: 220px 220px, 260px 260px;
  mix-blend-mode: screen;
  opacity: 0.22;
  animation: glowDustDrift 18s linear infinite alternate;
}

@keyframes glowDustDrift {
  0% {
    background-position: 0 0, 100% 100%;
  }
  50% {
    background-position: 50% 20%, 20% 80%;
  }
  100% {
    background-position: 100% 0, 0 100%;
  }
}

/* Vignette */
.page-vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at center,
      transparent 0,
      transparent 50%,
      rgba(20, 9, 6, 0.35) 100%);
}

/* Scroll-Progress-Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  z-index: 250;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-rose), var(--color-accent));
  box-shadow: 0 0 12px rgba(212, 141, 160, 0.9);
}

/* ---------- Header & Navigation ---------- */

.site-header {
  position: fixed;       /* statt sticky */
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;          /* über der Scroll-Progress-Bar */
  backdrop-filter: blur(18px);
  background: linear-gradient(
    120deg,
    rgba(247, 226, 198, 0.7),
    rgba(251, 239, 244, 0.7)
  );
  border-bottom: 1px solid rgba(204, 170, 144, 0.75);
  box-shadow: 0 10px 26px rgba(154, 119, 94, 0.25);
}

.site-header .container {
  padding-inline: 1.7rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0.7rem 0;
  min-width: 0; /* wichtig für flex + lange Brand */
}

.brand,
.footer-brand {
  display: inline-flex;
  flex-wrap: nowrap;        /* NEU: niemals umbrechen! */
  align-items: center;
  gap: 0.35rem;              /* Abstand zwischen GO / GLOW / GLAM */
  
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 1.25rem;

  white-space: nowrap;       /* NEU: ganze Marke bleibt in einer Linie */
  color: #2a1913;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}


.brand-go,
.brand-glam {
  color: var(--color-ink);
}

.brand-glow {
  color: var(--color-accent);
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  padding-bottom: 0.18rem;
  position: relative;

  /* NEU: in der Navigation darf NICHT mitten im Wort umgebrochen werden */
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}


.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-rose));
  transition: width var(--transition-fast);
}

.main-nav a:hover {
  color: var(--color-ink);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-accent);
  color: #412a20;
  font-size: 0.82rem;
  background: radial-gradient(
    circle at top left,
    rgba(215, 170, 99, 0.96),
    rgba(232, 169, 189, 0.9)
  );
  box-shadow: 0 8px 22px rgba(142, 104, 83, 0.4);
}

.nav-cta:active {
  background: radial-gradient(
    circle at top left,
    rgba(195, 150, 79, 0.96),
    rgba(212, 149, 169, 0.9)
  );
  box-shadow: 0 6px 16px rgba(142, 104, 83, 0.45);
  transform: translateY(1px);
}

/* Burger */
.nav-toggle {
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.26rem;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 1.3rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-ink);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle.is-active .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 2.4rem 0 4.4rem;
  overflow: hidden;
  padding-top: 8.5rem !important; /* vorher 2.4rem */
  padding-bottom: 2.2rem !important; /* vorher 4.4rem */
}


.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
}

.hero-eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-ink-soft);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
}

.hero .accent {
  color: var(--color-rose-deep);
}

.hero-text {
  margin: 0 0 1.7rem;
  color: var(--color-ink-soft);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--color-ink-soft);
  justify-content: center;
}

.hero-badges span {
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-subtle);
  padding: 0.32rem 0.85rem;
  background: rgba(253, 245, 238, 0.8);
  box-shadow: 0 8px 18px rgba(154, 119, 94, 0.2);
}

/* Hero Panel */
.hero-panel {
  position: relative;
  max-width: 380px;
  margin-left: auto;
}

.hero-panel-inner {
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  position: relative;
}

.hero-panel-accent {
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-lg) + 8px);
  border: 1px solid rgba(215, 170, 99, 0.42);
  opacity: 0.9;
  pointer-events: none;
}

.hero-panel-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-ink-soft);
  margin-bottom: 1rem;
}

.hero-panel-list {
  margin: 0 0 1.4rem;
  padding-left: 1.1rem;
  color: var(--color-ink);
  font-size: 0.95rem;
}

.hero-panel-list li + li {
  margin-top: 0.45rem;
}

.hero-panel-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
}

/* Parallax-Ribbons */
.hero-bg-ribbon {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero-bg-ribbon--left {
  width: 42%;
  height: 120%;
  left: -10%;
  top: -10%;
  background: radial-gradient(circle at top, rgba(232, 169, 189, 0.6), transparent 60%);
  filter: blur(8px);
  opacity: 0.7;
  transform: translate3d(0, 0, 0);
}

.hero-bg-ribbon--right {
  width: 40%;
  height: 120%;
  right: -12%;
  top: -5%;
  background: radial-gradient(circle at center, rgba(215, 170, 99, 0.65), transparent 55%);
  filter: blur(12px);
  opacity: 0.75;
  transform: translate3d(0, 0, 0);
}




/* ==========================================================
   HANTESIS Intro – im Hero-Stil
   ========================================================== */

.hantesis-intro-header {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 2.5rem;
}

/* Überschrift: wie Hero-H1 – Playfair, groß, schwarz */
.hantesis-intro-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1.4rem;
  color: #2a1a17; /* dunkel / schwarz, wie Hero */
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* kleine goldene Linie darunter – optional, sieht edel aus */
.hantesis-intro-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, #d7aa63, #c67a6a);
  margin: 1rem auto 0;
  border-radius: 999px;
}

/* Untertitel / Einleitungstext: fein, aber SCHWARZ */
.hantesis-intro-subtitle {
  max-width: 46rem;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #2a1a17; /* hier ist jetzt wirklich schwarz */
}

/* etwas weniger Abstand nach unten zur HANTESIS-Box */
.hantesis-intro {
  padding-bottom: 2.2rem;
}







/* ---------- HANTESIS Promo-Section (edel) ---------- */

.hantesis-promo {
  margin-top: 4rem !important;
  padding: 2.2rem 0 4.5rem;
  padding-top: 1rem !important;
}

.hantesis-promo-inner {
  position: relative;
  max-width: 1360px;
  width: min(100% - 3rem, 1360px);
  margin: 0 auto;
  padding: 1.2rem 3rem 1.2rem;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(255, 252, 247, 0.92),
    rgba(247, 226, 198, 0.94),
    rgba(251, 239, 244, 0.96)
  );
  border: 1px solid rgba(204, 170, 144, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(110, 75, 61, 0.45);

  /* NEU: Flex statt Grid */
  display: flex;
  align-items: center;            /* vertikal perfekt mittig */
  justify-content: space-between; /* Bild links – Text rechts */
  gap: 2.6rem;

  overflow: hidden;
}




/* zarter Glow-Rand */
.hantesis-promo-inner::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.9), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(215, 170, 99, 0.75), transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0.9;
  z-index: -1;
}

.hantesis-promo-media {
  position: relative;
  width: 340px;
  height: 340px;
  flex-shrink: 0;     /* <<< wichtig */
  margin-left: 70px;

}



.hantesis-promo-media::before,
.hantesis-promo-media::after {
  content: none !important;
}








/* ============================
   HANTESIS 3D CUBE (ohne Dots)
   ============================ */

.hantesis-promo-frame{
  position: relative;
  width: 100%;
  height: 100%;
}

.hantesis-cube__scene{
  width: 100%;
  height: 100%;
  perspective: 900px;
  display: grid;
  place-items: center;
}

.hantesis-cube__cube{
  position: relative; /* ✅ FIX: Parent für absolute Faces */
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 900ms cubic-bezier(.2,.75,.2,1);
  will-change: transform;
  animation: gggCubeSpin 12s infinite ease-in-out;
}


/* Auto-Rotation (ohne JS) */
@keyframes gggCubeSpin {
  0%   { transform: rotateY(0deg); }
  25%  { transform: rotateY(-90deg); }
  50%  { transform: rotateY(-180deg); }
  75%  { transform: rotateY(-270deg); }
  100% { transform: rotateY(-360deg); }
}
@-webkit-keyframes gggCubeSpin {
  0%   { -webkit-transform: rotateY(0deg); }
  25%  { -webkit-transform: rotateY(-90deg); }
  50%  { -webkit-transform: rotateY(-180deg); }
  75%  { -webkit-transform: rotateY(-270deg); }
  100% { -webkit-transform: rotateY(-360deg); }
}


/* optional: beim Hover pausieren (Desktop) */
@media (hover:hover){
  .hantesis-cube__scene:hover .hantesis-cube__cube{
    animation-play-state: paused;
  }
}


/* Faces */
.hantesis-cube__face{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  backface-visibility: hidden;
}

.hantesis-cube__face img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  box-shadow: 0 18px 40px rgba(60,35,25,.28);
  border-radius: 16px;
}

/* Tiefe = halbe Boxbreite */
:root{ --hantesis-cube-z: 170px; } /* 340px / 2 */

.hantesis-cube__face.is-front{
  -webkit-transform: rotateY(  0deg) translateZ(var(--hantesis-cube-z));
  transform: rotateY(  0deg) translateZ(var(--hantesis-cube-z));
}
.hantesis-cube__face.is-right{
  -webkit-transform: rotateY( 90deg) translateZ(var(--hantesis-cube-z));
  transform: rotateY( 90deg) translateZ(var(--hantesis-cube-z));
}
.hantesis-cube__face.is-back{
  -webkit-transform: rotateY(180deg) translateZ(var(--hantesis-cube-z));
  transform: rotateY(180deg) translateZ(var(--hantesis-cube-z));
}
.hantesis-cube__face.is-left{
  -webkit-transform: rotateY(-90deg) translateZ(var(--hantesis-cube-z));
  transform: rotateY(-90deg) translateZ(var(--hantesis-cube-z));
}


/* 3D darf sichtbar sein */
.hantesis-promo-media{
  overflow: visible;
}

/* Responsive Tiefe passend zu deinen Breakpoints */
@media (max-width: 860px){
  :root{ --hantesis-cube-z: 130px; }
}
@media (max-width: 560px){
  :root{ --hantesis-cube-z: 115px; }
}












/* Rechte Text-Spalte */
.hantesis-promo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;     /* alles mittig */
  gap: 1.3rem;
  text-align: center;
}

.hantesis-promo-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #b78a5f;
  margin: 0;
}

.hantesis-promo-title {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25;
}

.hantesis-promo-glow {
  color: var(--color-accent);   /* GLOW in Gold */
}

.hantesis-promo-subtitle {
  display: block;
  margin-top: 0.35rem;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a5b52;
}

.hantesis-promo-copy {
  margin: 0;
  line-height: 1.7;
  color: var(--color-ink-soft);
  max-width: 30rem;
}

/* Button */
.hantesis-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.5rem;
  justify-content: center;
}

.hantesis-promo-actions .btn-primary {
  min-width: 220px;
}

/* Badges ganz unten über die volle Breite */
.hantesis-promo-badges-row {
  /* KEIN grid-column mehr, wir sind in der rechten Spalte */
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;  /* bleibt schön mittig in der rechten Spalte */
  align-items: center;
  margin-top: 1.2rem;
}


.hantesis-promo-badges-row span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(204, 170, 144, 0.85);
  background: radial-gradient(
    circle at top left,
    rgba(255, 252, 247, 0.98),
    rgba(247, 226, 198, 0.95)
  );
  color: #6c524d;
  white-space: nowrap;
}

/* leichte Hover-Bewegung für die ganze Karte */
@media (min-width: 768px) {
  .hantesis-promo-inner {
    transition:
      transform 220ms ease-out,
      box-shadow 220ms ease-out;
  }

  .hantesis-promo-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(110, 75, 61, 0.55);
  }
}

/* GO GLOW GLAM & HANTESIS in einer Linie halten */
.hantesis-promo-brandline {
  white-space: nowrap;
}

/* & im gleichen eleganten Stil wie im Hero (&) */
.hantesis-promo-amp {
  font-family: "Playfair Display", serif;
  font-style: italic;
  padding: 0 0.35rem;
  color: var(--color-accent); /* Gold wie GLOW */
}

/* ============================
   PROMO – HANTESIS LOGO INLINE
   ============================ */

.hantesis-promo-brandline{
  display: inline-flex;     /* wichtig für Logo in einer Linie */
  align-items: center;
  gap: 0.35em;
}

/* HANTESIS als Logo */
.hantesis-promo-logo{
  height: 1.95em;           /* etwas größer als Text */
  width: auto;
  object-fit: contain;
  transform: translateY(-1px); /* minimal nach oben */
  pointer-events: none;
}








/* ============================
   HERO – HANTESIS Brand Strip (CLEAN)
   ============================ */

.hantesis-brand-strip{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 10px;
  margin-top: -130px;         /* zieht den Block nach oben */
  overflow: visible;
}

/* UNSICHTBARE BOX */
.hantesis-brand-box{
  width: min(74vw, 640px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 160px;          /* gleiche Optik wie vorher, ohne Transform-Konflikt */
}

/* ==========================================================
   Load Animation
   ========================================================== */

@keyframes gggHantesisLogoIn{
  0%   { opacity: 0; transform: translateY(18px) scale(0.985); }
  100% { opacity: 1; transform: translateY(0)   scale(1); }
}

@keyframes gggHantesisSloganIn{
  0%   { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Logo */
.hantesis-brand-logo{
  width: 100%;
  height: auto;
  display: block;

  /* Animation */
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: gggHantesisLogoIn 700ms ease-out 120ms forwards;
  will-change: transform, opacity;
}




/* Text unter Logo */
.hantesis-brand-slogan{
  width: 100%;
  margin-top: -35px;

  font-size: 17px;
  letter-spacing: 0.37em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  color: rgba(53,38,37,0.75);
  position: relative;
  left: -7px;   /* ✅ DAS verschiebt nach links */
  /* Animation */
  opacity: 0;
  transform: translateX(-8px) translateY(14px);
  animation: gggHantesisSloganIn 650ms ease-out 220ms forwards;
  will-change: transform, opacity;
}

/* kleines Logo in der Promo-Brandline (inline) */
.hantesis-promo-logo{
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  animation: gggHantesisLogoIn 650ms ease-out 160ms forwards;
  will-change: transform, opacity;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  .hantesis-brand-logo,
  .hantesis-brand-slogan,
  .hantesis-promo-logo{
    opacity: 1 !important;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .hantesis-promo-inner {
    padding: 2.2rem 2rem 2.2rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
    gap: 2rem 2rem;
  }

  .hantesis-promo-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 860px) {
  .hantesis-promo-inner {
    padding: 1.8rem 1.4rem 2.1rem;
    flex-direction: column;     /* Bild oben, Text darunter */
    align-items: center;
    gap: 1.2rem;                /* WICHTIG: weniger Luft zwischen Bild & Text */
  }

  .hantesis-promo-media {
    order: 1;
    min-height: 230px;
    margin-left: 0;             /* kein Versatz auf Handy */
  }

  .hantesis-promo-text {
    order: 2;
    margin-top: 0.2rem;         /* Text etwas näher ans Bild */
  }

  .hantesis-promo-badges-row {
    order: 3;
    text-align: center;
  }

  .hantesis-promo-title {
    font-size: 1.7rem;
  }
}



/* ---------- HANTESIS Promo – Mobile (<= 560px) ---------- */
@media (max-width: 560px) {

  .hantesis-promo {
    margin-top: 2.2rem;     /* <<< vorher 3rem */
    padding: 1.6rem 0 2.2rem; /* <<< unten weniger Luft */
  }

  .hantesis-promo-inner {
    padding: 1.7rem 1.2rem 2rem;
    border-radius: 26px;
    flex-direction: column;            /* Bild über Text */
    align-items: center;
    gap: 1.6rem;
  }

  /* Bild-Frame: kleiner, wirklich mittig */
  .hantesis-promo-media {
    position: relative;
    width: 100%;
    max-width: 260px;                  /* Größe vom „Tablet“ */
    aspect-ratio: 1 / 1;               /* schön quadratisch */
    height: auto;
    margin: 0 auto;                    /* mittig, kein left-Margin mehr */
    border-radius: 20px;
  }

  /* Dots direkt unter dem Bild, nicht halb draußen */
  .hantesis-promo-dots {
    position: static;
    margin-top: 0.8rem;
    transform: none;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
  }

  .hantesis-promo-title {
    font-size: 1.55rem;
  }

  .hantesis-promo-badges-row span {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }

  .hantesis-promo-actions .btn-primary {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
  .hantesis-promo + .section {
    padding-top: 2.2rem;   /* statt 4.6rem */
  }
}

@media (max-width: 560px) {

  .hantesis-promo-text {
    gap: 0.7rem;                 /* weniger Luft zwischen den Textzeilen */
  }

  .hantesis-promo-eyebrow {
    margin-bottom: 0.1rem;
    font-size: 0.75rem;
  }

  .hantesis-promo-title {
    font-size: 1.6rem;
    letter-spacing: 0.18em;
  }

  .hantesis-promo-subtitle {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    margin-top: 0.15rem;
  }

  .hantesis-promo-copy {
    font-size: 0.88rem;
    max-width: 26rem;
    margin-top: 0.3rem;
  }

  .hantesis-promo-badges-row {
    margin-top: 0.8rem;
  }

  .hantesis-promo-badges-row span {
    padding: 0.26rem 0.85rem;
  }
}
/* --- HANTESIS-Texte nur auf Handy fein anpassen --- */
@media (max-width: 560px) {

  /* Brand-Zeile: darf umbrechen + etwas kompakter */
  .hantesis-promo-brandline {
    white-space: normal;
    letter-spacing: 0.14em;
    display: inline-flex;
  }

  .hantesis-promo-logo{
    height: 1em;
    transform: translateY(-1px);
  }

  /* Haupttitel etwas kleiner */
  .hantesis-promo-title {
    font-size: 1.3rem;
    letter-spacing: 0.14em;
    line-height: 1.25;
  }

  /* Untertitel kompakter */
  .hantesis-promo-subtitle {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    margin-top: 0.15rem;
  }

  /* Fließtext in der Box: kleiner + angenehme Breite */
  .hantesis-promo-copy {
    font-size: 0.84rem;
    line-height: 1.55;
    max-width: 21rem;
    margin-top: 0.4rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* Badges: dürfen umbrechen, damit B2B-Text Luft hat */
  .hantesis-promo-badges-row {
    gap: 0.45rem;
  }

  .hantesis-promo-badges-row span {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.7rem;
    white-space: normal;     /* <<< wichtig: nicht mehr alles in einer Zeile erzwingen */
    line-height: 1.3;
    text-align: center;
  }
}




/* ---------- Über mich ---------- */

.about-grid {
  display: grid;
  gap: 2.8rem;
  align-items: center;
}

.about-photo {
  max-width: 320px;
  justify-self: center;
}

.about-photo-frame {
  margin: 0;
  border-radius: 1.7rem;
  padding: 0.45rem;
}

.about-photo-frame img {
  border-radius: 1.3rem;
  background: rgba(253, 247, 242, 0.9);
}

.about-photo-caption {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.about-chip {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.7rem;
  color: var(--color-ink-soft);
}

.about-text h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-text p {
  color: var(--color-ink-soft);
  margin-top: 0;
}

.about-text p + p {
  margin-top: 0.9rem;
}

.about-note {
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* ---------- Services ---------- */

.services {
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  inset-inline: 4%;
  top: 0;
  height: 64%;
  border-radius: 2.4rem;
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  gap: 1.8rem;
}

.service-card {
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem 1.6rem;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

.service-card p {
  margin-top: 0;
  color: var(--color-ink-soft);
}

.service-list {
  padding-left: 1.2rem;
  margin: 0.9rem 0 1.1rem;
  color: var(--color-ink-soft);
  font-size: 0.94rem;
}

.service-list li + li {
  margin-top: 0.36rem;
}

.service-price {
  margin: 0;
  font-weight: 600;
  color: var(--color-accent);
}

.service-footnote {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--color-ink-soft);
}

/* ---------- Galerie ---------- */

.gallery-frame {
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.gallery-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
}

.gallery-item {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: 1.1rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-note {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 400; /* leicht erhöht, sicher über Header & Progressbar */
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: contain;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15, 8, 5, 0.95), rgba(5, 2, 1, 0.98));
}

.lightbox-inner {
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
}

.lightbox-viewport {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 0.2rem;
  border-radius: 1.05rem;
  background: radial-gradient(circle at top, #3f2720, #140d0b);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.75);
  max-width: min(900px, 92vw);
  max-height: 90vh;
  overflow: hidden;
}

.lightbox-viewport img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  border: none;
  background: #f7f0ea;
  color: #3a2419;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.05rem 0.9rem 0.2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  opacity: 0.96;
  z-index: 5;
}

.lightbox-close:hover {
  opacity: 1;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  border: none;
  padding: 0.55rem 1.1rem;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  background: #f7f0ea;
  color: #3a2419;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  opacity: 0.9;
  z-index: 4;
}

.lightbox-prev::before,
.lightbox-next::before {
  display: inline-block;
}

.lightbox-prev::before {
  content: "❮";
}

.lightbox-next::before {
  content: "❯";
}

.lightbox-arrow:hover {
  opacity: 1;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

.lightbox-prev {
  left: 1.6rem;
}

.lightbox-next {
  right: 1.6rem;
}

/* ---------- Mobile Service ---------- */

.mobile-grid {
  display: grid;
  gap: 2.3rem;
}

.mobile-highlight {
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
}

.steps-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-ink-soft);
  font-size: 0.96rem;
}

.steps-list li + li {
  margin-top: 0.7rem;
}

/* ---------- Process ---------- */

.process-grid {
  display: grid;
  gap: 1.5rem;
}

.process-step {
  border-radius: var(--radius-md);
  padding: 1.2rem 1.2rem 1.05rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1.15rem;
  align-items: flex-start;
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(215, 170, 99, 0.16);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.98rem;
}

.process-step h3 {
  margin: 0;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: var(--color-ink-soft);
  grid-column: 1 / -1;
}

/* ---------- FAQ ---------- */

.faq-list {
  border-radius: var(--radius-lg);
  padding: 0.4rem 0.3rem;
}

.faq-list details {
  border-bottom: 1px solid rgba(214, 180, 150, 0.4);
  padding: 0.2rem 1rem;
}

.faq-list details:last-of-type {
  border-bottom: none;
}

.faq-list details[open] {
  background: rgba(247, 226, 198, 0.38);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 0.2rem;
  position: relative;
  font-size: 0.98rem;
  text-align: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--color-accent);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0 0 1rem;
  color: var(--color-ink-soft);
  font-size: 0.94rem;
  text-align: center;
}

.faq-list details[open] p {
  background: rgba(247, 226, 198, 0.7);
  border-radius: 0.9rem;
  padding: 0.9rem 0.8rem 1rem;
  margin: 0.3rem 0 1rem;
}


/* =========================
   HANTESIS-Intro – edler, zentrierter Look
   ========================= */
.section.hantesis-intro {
  padding-bottom: 3.5rem; /* weniger Abstand nach unten */
}

.hantesis-intro .section-header,
.hantesis-intro .reveal {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hantesis-intro .section-header h2 {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 2vw + 1.2rem, 2.2rem);
}

.hantesis-intro .section-header p {
  margin-top: 1.6rem;
  font-size: 0.98rem;
}

.hantesis-intro p {
    max-width: 850px;
    margin: 0 auto 1.6rem;
    text-align: center;
}


/* Bullet-Liste schön mittig, Text aber lesbar linksbündig */
.hantesis-intro .bullet-list {
  display: inline-block;
  text-align: left;
  margin: 1.8rem auto 1.2rem;
  padding-left: 1.3rem;
}

/* HANTESIS-Box etwas näher an den Intro-Text holen */
.section.hantesis-promo {
  padding-top: 2rem;
  margin-top: 0;
}

/* ---------- Booking / Formular ---------- */

.booking-grid {
  display: grid;
  gap: 2.4rem;
}

.booking-intro p {
  color: var(--color-ink-soft);
}

.contact-direct {
  text-align: center;
  max-width: 420px;
  margin: 1.8rem auto 0;
}

.contact-direct p {
  margin: 0.3rem 0;
}

.contact-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin: 0.5rem 0;
}

.contact-icon {
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 100%;
  height: 100%;
}

.contact-text {
  font-size: 0.92rem;
}

.booking-form-card {
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem 1.5rem;
}

form {
  margin: 0;
}

.form-row {
  display: grid;
  gap: 1.05rem;
}

.form-row.form-row--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.05rem;
  align-items: flex-end;
}

.form-row.form-row--inline .form-field {
  flex: 1 1 180px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-ink-soft);
}

input,
select,
textarea {
  border-radius: 0.95rem;
  border: 1px solid rgba(204, 170, 144, 0.85);
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--color-ink);
  background: linear-gradient(
    135deg,
    rgba(255, 252, 247, 0.7),
    rgba(250, 237, 223, 0.6)
  );
  backdrop-filter: blur(4px);
  outline: none;
  box-shadow: 0 2px 6px rgba(154, 119, 94, 0.25);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

/* NEU: Formular-Felder immer volle Breite, lange Texte sauber abbrechen */
input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  text-overflow: ellipsis;
}

input::placeholder,
textarea::placeholder {
  color: rgba(161, 132, 111, 0.75);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-accent);
  box-shadow:
    0 0 0 1px rgba(215, 170, 99, 0.65),
    0 3px 10px rgba(154, 119, 94, 0.4);
  background: linear-gradient(
    135deg,
    rgba(255, 252, 247, 0.95),
    rgba(252, 241, 230, 0.85)
  );
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.booking-form-card .form-field input,
.booking-form-card .form-field select {
  height: 3rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  line-height: 1.2;
}

.form-hint {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--color-ink-soft);
}

.form-feedback {
  min-height: 1.1rem;
  margin: 0.25rem 0 0;
  font-size: 0.86rem;
}

.form-feedback.success {
  color: #1f8a5a;
}

.form-feedback.error {
  color: #b43b3b;
}

/* ---------- Studio Map ---------- */

.studio-map .container{
  max-width: 1120px;
}

/* Map Container: feste Höhe, damit Consent & Karte identisch groß sind */
.studio-map .map-frame{
  position: relative;
  width: 100%;
  height: 420px;                 /* Desktop-Höhe */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(154, 119, 94, 0.45);
  background: #fbe3d7;
}

/* Responsive Höhen */
@media (max-width: 900px){
  .studio-map .map-frame{ height: 340px; }
}
@media (max-width: 639px){
  .studio-map .map-frame{ height: 280px; }
}

/* Consent-Overlay liegt über der Map-Fläche und hat exakt gleiche Größe */
.studio-map .map-consent{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
}

/* Iframe füllt immer den Container */
.studio-map .map-frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 80ms ease-out,
    box-shadow var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #fbe5c3);
  color: #3a2419;
  box-shadow: 0 14px 34px rgba(154, 119, 94, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(154, 119, 94, 0.55);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 10px 26px rgba(154, 119, 94, 0.55);
  background: linear-gradient(135deg, #cfa055, #f7d7aa);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 40%;
  height: 300%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.0),
    rgba(255, 255, 255, 0.65),
    rgba(255, 255, 255, 0.0)
  );
  transform: translateX(-130%);
  pointer-events: none;
}

.btn-primary:hover::after {
  animation: gggButtonShine 900ms ease-out;
}

@keyframes gggButtonShine {
  0% {
    transform: translateX(-130%);
  }
  50% {
    transform: translateX(40%);
  }
  100% {
    transform: translateX(130%);
  }
}

.btn-ghost {
  background: rgba(253, 245, 238, 0.7);
  border-color: rgba(204, 170, 144, 0.8);
  color: var(--color-ink);
}

.btn-ghost:hover {
  background: #fdf5ee;
}

.btn-full {
  width: 100%;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid rgba(204, 170, 144, 0.4);
  padding: 1.4rem 0 1.9rem;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.45),
    rgba(247, 226, 198, 0.5),
    rgba(251, 239, 244, 0.45)
  );
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(204, 170, 144, 0.6);
}

.footer-grid {
  display: grid;
  gap: 1rem;
  align-items: flex-start;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  margin: 0 0 0.3rem;
}

.footer-text {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-ink-soft);
  max-width: 360px;
}

.footer-links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
  justify-content: center;
}

.footer-links a {
  color: var(--color-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.footer-meta {
  font-size: 0.78rem;
  color: var(--color-ink-soft);
  text-align: center;
}

.footer-meta p {
  margin: 0.1rem 0;
}

/* ---------- Cookie-Banner ---------- */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 640px;
  width: calc(100% - 3rem);
  padding: 0.9rem 1.1rem;
  border-radius: 1rem;
  display: none;
  align-items: flex-start;
  gap: 0.9rem;
  z-index: 200;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-ink-soft);
}

.cookie-banner a {
  text-decoration: underline;
}

.cookie-actions {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cookie-actions button {
  border-radius: 999px;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--color-accent), #fbe5c3);
  color: #3a2419;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(154, 119, 94, 0.4);
}

.cookie-actions button:hover {
  box-shadow: 0 13px 32px rgba(154, 119, 94, 0.55);
}

/* ---------- Reveal Animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s var(--transition-med),
    transform 0.6s var(--transition-med);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Glass Look ---------- */

.hero-panel-inner,
.service-card,
.gallery-frame,
.mobile-highlight,
.process-step,
.faq-list,
.booking-form-card,
.about-photo-frame,
.cookie-banner {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.55),
    rgba(247, 226, 198, 0.6),
    rgba(251, 239, 244, 0.55)
  );
  border: 1px solid rgba(204, 170, 144, 0.65);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(154, 119, 94, 0.35);
}

.services::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45),
    rgba(247, 226, 198, 0.45)
  );
  border: 1px solid rgba(204, 170, 144, 0.6);
  backdrop-filter: blur(20px);
}

/* ---------- Hover Desktop ---------- */

@media (min-width: 768px) {
  .service-card,
  .mobile-highlight,
  .process-step,
  .faq-list,
  .booking-form-card,
  .gallery-frame,
  .about-photo-frame {
    transition:
      transform 220ms ease-out,
      box-shadow 220ms ease-out,
      border-color 220ms ease-out;
  }

  .service-card:hover,
  .mobile-highlight:hover,
  .process-step:hover,
  .faq-list:hover,
  .booking-form-card:hover,
  .gallery-frame:hover,
  .about-photo-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(154, 119, 94, 0.45);
    border-color: rgba(215, 170, 99, 0.95);
  }

  .gallery-item {
    transition:
      transform 220ms ease-out,
      box-shadow 220ms,ease-out;
  }

  .gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 60px rgba(154, 119, 94, 0.5);
  }
}

body {
  /* ... deine bisherigen body-Eigenschaften (margin, font, etc.) bleiben */
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 169, 189, 0.75), transparent 62%),
    radial-gradient(circle at 100% 100%, rgba(215, 170, 99, 0.75), transparent 65%),
    radial-gradient(circle at 85% 20%, rgba(255, 239, 222, 0.75), transparent 60%),
    radial-gradient(circle at 20% 85%, rgba(250, 229, 212, 0.75), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(198, 146, 112, 0.55), transparent 70%),
    linear-gradient(180deg, #fff8f3, #f7ddcc);
  background-attachment: fixed;
}


/* ---------- >= 640px / >= 768px Layout ---------- */

@media (min-width: 640px) {
  .hero-grid {
    gap: 3.3rem;
  }


  .about-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.4fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-grid {
    grid-template-columns: 1.1fr 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-grid {
    grid-template-columns: 1.05fr 1.1fr;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.3fr);
    justify-items: center;
    text-align: center;
  }

  .contact-direct--desktop {
    display: block;
  }

  .contact-direct--mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.05fr);
    align-items: center;
  }
}

/* ---------- Mobile Header / Navigation ---------- */

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .brand {
    flex: 1 1 auto;
  }

  .nav-toggle {
    margin-left: auto;
  }
}
   
/* ---------- <= 639px ---------- */

@media (max-width: 639px) {
  .site-header .container {
    padding-inline: 1.4rem;
  }

  .header-inner {
    padding-block: 0.6rem;
  }

  .brand,
  .footer-brand {
    font-size: 1.25rem;
    letter-spacing: 0.30em;
  }

  .main-nav {
  position: absolute;
  inset-inline: 0;
  top: 100%;
  display: none;

  padding: 0.75rem 1.1rem 1rem;
  margin: 0.65rem 1rem 0;

  border-radius: 18px;
  border: 1px solid rgba(204, 170, 144, 0.55);
  box-shadow: 0 18px 50px rgba(60, 35, 25, 0.22);

  background: linear-gradient(
    180deg,
    rgba(255, 252, 248, 0.98),
    rgba(247, 226, 198, 0.95),
    rgba(251, 239, 244, 0.97)
  );
  backdrop-filter: blur(18px);
}


  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
  flex-direction: column;
  align-items: center;   /* wichtig: volle Breite */
  gap: 0;                 /* keine “Lücken”, wir machen Trennlinien */
  padding-top: 0.2rem;
}

.main-nav a{
  display: flex;
  align-items: center;
  justify-content: center;     /* ✅ TEXT wirklich mittig */
  
  width: 100%;
  padding: 0.88rem 0.9rem;

  font-size: 0.95rem;
  letter-spacing: 0.10em;
  color: rgba(53, 38, 37, 0.88);
  text-decoration: none;

  border-radius: 14px;        /* ✅ bleibt weich */
}


.main-nav li + li a{
  border-top: 1px solid rgba(204, 170, 144, 0.22);
  border-radius: 14;
}

.main-nav a:hover{
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.main-nav a:active{
  background: rgba(215, 170, 99, 0.14);
}

  .nav-cta{
  width: 100%;
  justify-content: center;
  margin-top: 0.85rem;

  padding: 0.92rem 1rem;
  border-radius: 999px;       /* ✅ pill, nicht eckig */
  font-size: 0.88rem;
  letter-spacing: 0.14em;

  /* ✅ weniger durchsichtig + edler */
  background: linear-gradient(
    90deg,
    rgba(215, 170, 99, 0.95),
    rgba(232, 169, 189, 0.92)
  );

  border: 1px solid rgba(204, 170, 144, 0.65);
  box-shadow: 0 14px 36px rgba(154, 119, 94, 0.35);
}


/* Handy: weniger Abstand vor dem About-Bild */
#about .about-photo{
  margin-top: 0.4rem !important;
}
#about{
  padding-top: 2.8rem !important;
}

  .hero-panel {
    max-width: 100%;
  }

  .gallery .container {
    padding-inline: 0.6rem;
    max-width: 480px;
    margin: 0 auto;
  }

  .gallery-frame {
    padding: 0.4rem;
  }

  .gallery-grid {
    gap: 0.4rem;
    grid-template-columns: repeat(auto-fit, minmax(55px, 1fr));
  }

  .gallery-item {
    border-radius: 1.1rem;
  }

  .booking-form-card,
  .service-card {
    padding-inline: 1.25rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    bottom: 1rem;
    width: calc(100% - 2rem);
  }

  .cookie-actions {
    margin-left: 0;
    margin-top: 0.6rem;
    justify-content: flex-end;
  }

  .contact-direct--desktop {
    display: none;
  }

  .contact-direct--mobile {
    display: block;
    margin-top: 2rem;
  }

  /* Lightbox mobile */
  .lightbox-inner {
    padding: 0;
  }

  .lightbox-viewport {
    width: 100%;
    height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .lightbox-viewport img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

    .lightbox-close {
    position: fixed;              /* statt absolute → immer auf dem Bildschirm */
    top: 0.8rem;
    right: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    color: #3a2419;
    font-size: 2rem;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    z-index: 1000;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  }


  .lightbox-arrow {
    background: transparent;
    box-shadow: none;
    color: #f7f0ea;
    opacity: 0.85;
  }

  .lightbox-prev {
    left: 0.6rem;
  }

  .lightbox-next {
    right: 0.6rem;
  }
/* ✅ HANDY FINAL FIX: Logo & Unterschrift exakt gleiche Breite */
.hantesis-brand-box{
  width: 300px;              /* <<< EIN Referenzwert */
  max-width: 92vw;           /* Sicherheit für sehr kleine Handys */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Logo */
.hantesis-brand-logo{
  display: block;
  width: 100%;               /* exakt Box-Breite */
  height: auto;
  margin: 0 auto;
}

/* Unterschrift */
.hantesis-brand-slogan{
  width: 100%;               /* exakt gleiche Breite wie Logo */
  margin-top: -15px;
  left: -4px !important;


  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-align: center;
}




}
/* ---------- Fix: Abstand unter fixed Header auf Impressum/Datenschutz ---------- */

/* Gilt für alle Seiten mit <body class="legal-page"> */
body.legal-page {
  padding-top: 5.2rem;   /* ungefähr die Höhe deines Headers auf Desktop */
}

/* Auf Mobile ist der Header etwas niedriger -> etwas weniger Abstand */
@media (max-width: 767px) {
  body.legal-page {
    padding-top: 4.6rem;
  }
}

/* ---------- Extra klein: Formular-Finetuning ---------- */
@media (max-width: 480px) {

  /* Formular-Karte etwas schmaler & zentriert */
  .booking-form-card {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1.9rem;
  }

  /* Labels etwas kleiner, damit lange Texte (z.B. Lettisch) gut passen */
  .booking-form-card label {
    font-size: 0.78rem;
    letter-spacing: 0.11em;
  }

  /* Inputs / Selects komfortabel, mit Platz rechts für den Pfeil */
  .booking-form-card input,
  .booking-form-card select,
  .booking-form-card textarea {
    font-size: 0.9rem;
    padding-left: 0.95rem;
    padding-right: 1.45rem;
  }

  /* Abstände etwas enger, damit alles luftig wirkt */
  .booking-form-card .form-field {
    margin-bottom: 0.8rem;
  }
}

/* iPhone-Fix: nach der Map nicht breiter als Bildschirm */
@media (max-width: 820px) {
  #studio-map + .section,
  #studio-map + .section .container,
  #studio-map + .section p,
  #studio-map + .section .section-header,
  #studio-map + .section .section-header p {
    max-width: 100% !important;
    overflow-x: hidden !important;
    word-wrap: break-word;
  }
}

/* ---------- HARD FIX NACH GOOGLE MAP (nur Mobile/Tablet) ---------- */
@media (max-width: 820px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  

  /* Alles nach der Map darf nicht breiter als der Screen werden */
  #booking,
  #booking .container,
  #booking .booking-grid,
  #booking .booking-form-card,
  #booking .contact-direct,
  .site-footer,
  .site-footer .container,
  .footer-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* Sicherheitshalber: keine Elemente in diesem Bereich dürfen rausstehen */
  #booking *,
  .site-footer * {
    max-width: 100%;
    box-sizing: border-box;
  }
}





/* =========================================================
   FIX: GO GLOW GLAM & HANTESIS – NUR HANDY sauber umbrechen
   ========================================================= */
@media (max-width: 560px){

  .hantesis-promo-brandline{
  display: inline-block;     /* kein Flex -> nichts bricht auseinander */
  white-space: nowrap;       /* GO GLOW GLAM bleibt eine Zeile */
}


  .hantesis-promo-amp{
  padding: 0;
}

/* Zeilenumbruch VOR dem & (CSS-only, ohne HTML-Änderung) */
.hantesis-promo-amp::before{
  content: "\A";             /* neuer Zeilenumbruch */
  white-space: pre;
  display: block;
  height: 0.25rem;           /* kleiner Abstand zwischen den Zeilen */
}


  .hantesis-promo-logo{
  height: 1.8em;     /* so lassen wie es ist */
  width: auto;
  display: block;    /* <<< wichtig */
  margin: 0 auto;    /* <<< zentriert */
  transform: none;
}



  /* Titel leicht kompakter */
  .hantesis-promo-title{
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    line-height: 1.22;
  }
}

/* Extra-kleine Handys (iPhone SE etc.) */
@media (max-width: 390px){
  .hantesis-promo-title{
    font-size: 1.22rem;
    letter-spacing: 0.10em;
  }
}


/* =========================================
   MOBILE FIX: Abstand unter Header verkleinern
   ========================================= */
@media (max-width: 560px){
  .hero{
    padding-top: 6.4rem !important; /* vorher 8.5rem */
  }
}

@media (max-width: 560px){

  /* 1️⃣ HANTESIS unten enger */
  .hantesis-promo{
    padding-bottom: 1.2rem !important;
  }

  /* 2️⃣ Nächste Section oben massiv kürzen */
  .hantesis-promo + .section{
    padding-top: 1.4rem !important;
  }

}

/* Impressum: Footer immer unten */
body.legal-page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Inhalt nimmt Platz ein, Footer rutscht runter */
body.legal-page .site-footer{
  margin-top: auto;
}


/* ==========================================
   LEGAL PAGES (Impressum / Datenschutz)
   ========================================== */

body.legal-page {
  min-height: 100vh;
}

/* -------------------------------
   Background: rein visuell
-------------------------------- */
body.legal-page #water-bg,
body.legal-page .glow-dust,
body.legal-page .page-vignette,
body.legal-page .scroll-progress {
  pointer-events: none;
  z-index: 0 !important;
}

/* -------------------------------
   Header / Content / Footer Layer
-------------------------------- */
body.legal-page .site-header,
body.legal-page .legal-main,
body.legal-page .site-footer {
  position: relative;
  z-index: 5;
}

/* -------------------------------
   HEADER: ruhiger & kompakter
-------------------------------- */
body.legal-page .site-header {
  backdrop-filter: blur(6px);
  background: rgba(255, 248, 243, 0.92);
  border-bottom: 1px solid rgba(215, 170, 99, 0.18);
}

/* -------------------------------
   MAIN Abstand – logisch unter Header
-------------------------------- */
body.legal-page .legal-main {
  padding: 80px 0 50px; /* bewusst FIX – wirkt seriöser als clamp */
}

/* -------------------------------
   Legal Content Card
-------------------------------- */
body.legal-page .legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 44px 46px;

  background: rgba(255, 250, 246, 0.85);
  border: 1px solid rgba(215, 170, 99, 0.22);
  border-radius: 22px;

  box-shadow:
    0 12px 30px rgba(27, 20, 17, 0.18),
    inset 0 0 0 1px rgba(255,255,255,0.35);

  text-align: left;
}

/* -------------------------------
   Typografie – klar & seriös
-------------------------------- */
body.legal-page .legal-content h1 {
  margin: 0 0 28px;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

body.legal-page .legal-content h2 {
  margin: 42px 0 14px;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

body.legal-page .legal-content h3 {
  margin: 28px 0 10px;
  font-size: 1.05rem;
}

body.legal-page .legal-content p,
body.legal-page .legal-content li {
  line-height: 1.8;
  color: var(--color-ink, #352625);
}

body.legal-page .legal-content p {
  margin: 0 0 14px;
}

/* -------------------------------
   Listen
-------------------------------- */
body.legal-page .legal-content ul,
body.legal-page .legal-content ol {
  margin: 12px 0 20px;
  padding-left: 22px;
}

/* -------------------------------
   Links – seriös, nicht verspielt
-------------------------------- */
body.legal-page .legal-content a {
  color: var(--color-ink, #352625);
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 38, 37, 0.35);
}

body.legal-page .legal-content a:hover {
  border-bottom-color: rgba(53, 38, 37, 0.75);
}

/* -------------------------------
   Meta (z.B. Stand:)
-------------------------------- */
body.legal-page .legal-content .legal-meta {
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(53, 38, 37, 0.65);
}

/* -------------------------------
   Mobile
-------------------------------- */
@media (max-width: 768px) {
  body.legal-page .legal-main {
    padding: 110px 16px 80px;
  }

  body.legal-page .legal-content {
    padding: 28px 22px;
    border-radius: 18px;
  }

  body.legal-page .legal-content h1 {
    font-size: 1.6rem;
  }
}
/* SAFE LIVE FIX: Legal Pages – Header bleibt oben, Content hat Abstand */
body.legal-page { padding-top: 0 !important; }
body.legal-page .legal-main { padding-top: 50px !important; }





/* =========================================================
   iOS SAFARI ONLY — HANTESIS Cube sichtbar + Animation stabil
   (nur iPhone/iPad, beeinflusst NICHT Desktop/Android)
   ========================================================= */
@supports (-webkit-overflow-scrolling: touch) {

  /* iOS: Parent mit blur + overflow hidden killt/clippt 3D */
  .hantesis-promo-inner{
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    overflow: visible;
    isolation: isolate;
  }

  /* iOS: 100%-Höhe-Kette schließen (sonst kann Cube 0px werden) */
  .hantesis-cube{
    width: 100%;
    height: 100%;
  }

  /* iOS: 3D Engine sauber aktivieren */
  .hantesis-cube__scene{
    -webkit-perspective: 900px;
    perspective: 900px;
    -webkit-perspective-origin: 50% 50%;
    perspective-origin: 50% 50%;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  .hantesis-cube__cube{
    position: relative; /* wichtig für absolute faces */
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;

    -webkit-animation: gggCubeSpin 12s infinite ease-in-out;
    animation: gggCubeSpin 12s infinite ease-in-out;

    transition: none;
    will-change: transform;
  }

  .hantesis-cube__face,
  .hantesis-cube__face img{
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

    .hantesis-cube__face img{
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);

  /* wie Android: vollflächig, kein Rahmen */
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* wichtig: Ellbogen nicht abschneiden -> Bild nach oben schieben */
  object-position: 50% 30%;

  /* runde Ecken wie Android */
  border-radius: 16px;

  /* optional (wie vorher): Shadow ok */
  box-shadow: 0 18px 40px rgba(60,35,25,.28);
}

/* =========================================================
   iOS ONLY – Cube breiter machen (Android-Look)
   ========================================================= */
@supports (-webkit-overflow-scrolling: touch) {

  /* Cube-Frame auf iPhone flacher machen */
  .hantesis-promo-media{
    aspect-ratio: 1.20 / 1;   /* <<< WICHTIG: breiter als hoch */
  }

  /* Sicherheit: Bild füllt weiterhin korrekt */
  .hantesis-cube__face img{
    object-fit: cover;
    object-position: center center;
  }
}



  /* iOS: selbst wenn "Bewegung reduzieren" aktiv ist, Cube läuft weiter */
  @media (prefers-reduced-motion: reduce){
    .hantesis-cube__cube{
      -webkit-animation: gggCubeSpin 12s infinite ease-in-out;
      animation: gggCubeSpin 12s infinite ease-in-out;
    }
  }
}

/* =====================================================
   MOBILE ABSTÄNDE – ZENTRAL (NUR <= 560px)
   EXTRA ENG: Abstände zwischen Blöcken deutlich kleiner
   Header/Logo/Box-Inhalte werden NICHT angefasst.
   ===================================================== */
@media (max-width: 560px){

  /* Standard Sections allgemein enger (betrifft nur vertikale Abstände) */
  .section{
    padding-top: 2.2rem !important;   /* vorher 4.6rem global */
    padding-bottom: 2.2rem !important;
  }

  /* 1) Services -> Galerie (vor Galerie) */
  #services, .services { padding-bottom: 1.0rem !important; }
  #gallery             { padding-top:    0.8rem !important; }

  /* 2) Nach Galerie -> Mobile Service */
  #gallery        { padding-bottom: 0.8rem !important; }
  #mobile-service { padding-top:    0.8rem !important; }

  /* 3) Vor Signature Look */
  #process { padding-top: 0.9rem !important; }

  /* 4) Vor FAQ */
  #faq { padding-top: 0.9rem !important; }

  /* 5) Vor Studio/Map */
  #studio-map { padding-top: 0.9rem !important; }

  /* 6) Nach Map -> vor Booking */
  #studio-map { padding-bottom: 0.8rem !important; }
  #booking    { padding-top:    0.8rem !important; }

  /* Überschriften-Block in Sections kompakter */
  .section-header{
    margin-bottom: 1.2rem !important; /* vorher 2.7rem */
  }
  .section-header h2{
    margin-bottom: 0.55rem !important;
  }
}




