/* =========================================================
   SARAH CARINA — Premium Design System
   Warme Off-White-Welt · Anthrazit · Champagner-Gold (dezent)
   ========================================================= */

:root {
  /* Canvas & Flächen — Beigegrau (heller Grundton) */
  --bg: #e3ddd2;            /* Beigegrau (Canvas) */
  --bg-cream: #e3ddd2;      /* Alias (Kompatibilität) */
  --bg-panel: #d7cfc1;      /* leichte Bank */
  --bg-deep: #cbc2b2;       /* tiefere Bank */

  /* Text */
  --ink: #211d16;           /* Anthrazit */
  --text-dark: #211d16;     /* Alias */
  --text-muted: #6c6357;

  /* Akzente — Taupe als Hauptakzent */
  --champagne: #ddd3c0;
  --gold: #a98a52;          /* Gold – nur sehr dezent (Logo) */
  --taupe: #8a7a66;         /* Taupe – Hauptakzent */
  --accent: #8a7a66;        /* Taupe (Eyebrows, Balken, Linien) */
  --accent-dark: #6d5f4e;   /* tiefes Taupe (Hover / starke Akzente) */

  /* Linien */
  --border: #cec6b6;
  --hairline: rgba(33, 29, 22, 0.12);

  /* Form */
  --radius: 18px;
  --radius-lg: 26px;
  --pill: 100px;

  /* Schatten – sehr weich, nie hart */
  --shadow-sm: 0 2px 10px rgba(40, 33, 22, 0.05);
  --shadow-md: 0 18px 50px rgba(40, 33, 22, 0.10);
  --shadow-lg: 0 30px 80px rgba(40, 33, 22, 0.14);

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Rhythmus */
  --section-y: 140px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Jost", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--champagne); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 18px;
  border-radius: var(--pill);
  font-size: 13px;
}
.skip-link:focus { left: 16px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* =========================================================
   HEADER — sticky, glasklar, dezent
   ========================================================= */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(227, 221, 210, 0.72);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  transition: box-shadow 0.4s var(--ease), background-color 0.4s var(--ease), padding 0.4s var(--ease);
}
header.scrolled {
  padding: 14px 48px;
  background: rgba(227, 221, 210, 0.9);
  box-shadow: 0 1px 0 var(--hairline), 0 10px 30px rgba(40, 33, 22, 0.05);
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 24px; height: 36px; }
.logo-text { display: block; line-height: 1.1; }
.logo-text h1, .logo-text .brand {
  display: block;
  font-size: 21px; letter-spacing: 3px;
  font-family: "Jost", sans-serif; font-weight: 500;
}
.logo-text .brand-sub, .logo-text > span:not(.brand) {
  display: block;
  font-size: 10px; letter-spacing: 3.5px;
  color: var(--text-muted);
  margin-top: 3px;
}

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

nav { display: flex; align-items: center; gap: 34px; }
nav a {
  position: relative;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--accent-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
nav a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  border: 1px solid var(--hairline);
  padding: 11px 22px;
  border-radius: var(--pill);
  font-size: 11.5px;
  letter-spacing: 1.5px;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.nav-cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.nav-cta::after { display: none; }

/* Nav-Dropdown */
.nav-drop { position: relative; }
.nav-drop-trigger {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink); background: none; border: none; padding: 0; cursor: pointer;
  transition: color 0.3s var(--ease);
}
.nav-drop-trigger svg { width: 9px; height: 9px; transition: transform 0.35s var(--ease); }
.nav-drop-trigger::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--accent-dark);
  transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease);
}
.nav-drop:hover .nav-drop-trigger::after,
.nav-drop:focus-within .nav-drop-trigger::after,
.nav-drop.is-open .nav-drop-trigger::after { transform: scaleX(1); transform-origin: left; }
.nav-drop:hover .nav-drop-trigger svg,
.nav-drop:focus-within .nav-drop-trigger svg,
.nav-drop.is-open .nav-drop-trigger svg { transform: rotate(180deg); }
/* unsichtbare Brücke, damit der Hover beim Weg zum Menü nicht abreißt */
.nav-drop::after { content: ""; position: absolute; top: 100%; left: -10px; right: -10px; height: 18px; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 234px; padding: 10px;
  background: var(--bg-panel); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 60;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.is-open .nav-drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  width: 100%; padding: 11px 14px; border-radius: 10px;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink); white-space: nowrap;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-drop-menu a::after { display: none; }
.nav-drop-menu a:hover { background: rgba(127, 109, 76, 0.12); color: var(--accent-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 9px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 1.5px; width: 100%;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================
   HERO — ruhig, editorial, typografisch
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 66vh;
  display: flex;
  align-items: center;
  padding: 84px 48px 24px;
  background: linear-gradient(165deg, #e8e2d8 0%, #ded7ca 58%, #d3cabb 100%);
}

/* Cineastischer Video-Hintergrund */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Leseschutz: links heller, damit dunkler Text klar bleibt */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(227, 221, 210, 0.90) 0%, rgba(227, 221, 210, 0.66) 44%, rgba(227, 221, 210, 0.44) 100%);
}

/* ein einziger, sehr subtiler Champagner-Schein */
.hero-glow {
  position: absolute;
  z-index: 0;
  top: -10%; right: -5%;
  width: 60vw; height: 60vw;
  max-width: 820px; max-height: 820px;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(228, 190, 122, 0.42), rgba(228, 190, 122, 0) 72%);
  will-change: transform;
  animation: glowDrift 26s ease-in-out infinite alternate;
}
.hero-glow::after {
  content: "";
  position: absolute;
  left: -60%; bottom: -70%;
  width: 90%; height: 90%;
  background: radial-gradient(closest-side, rgba(210, 168, 118, 0.24), rgba(210, 168, 118, 0) 70%);
}
@keyframes glowDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-5%, 4%) scale(1.08); }
}

/* Cineastische Golden-Hour-Lichtpunkte (Bokeh) */
.hero-bokeh { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-bokeh span {
  position: absolute; bottom: -14%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(242, 216, 164, 0.62), rgba(242, 216, 164, 0) 68%);
  filter: blur(2px);
  opacity: 0;
  will-change: transform, opacity;
  animation: bokehFloat linear infinite;
}
.hero-bokeh span:nth-child(1) { left: 8%;  width: 82px;  height: 82px;  animation-duration: 27s; animation-delay: 0s; }
.hero-bokeh span:nth-child(2) { left: 22%; width: 46px;  height: 46px;  animation-duration: 20s; animation-delay: 5s; }
.hero-bokeh span:nth-child(3) { left: 37%; width: 112px; height: 112px; animation-duration: 33s; animation-delay: 2s; }
.hero-bokeh span:nth-child(4) { left: 53%; width: 60px;  height: 60px;  animation-duration: 24s; animation-delay: 9s; }
.hero-bokeh span:nth-child(5) { left: 67%; width: 38px;  height: 38px;  animation-duration: 18s; animation-delay: 3s; }
.hero-bokeh span:nth-child(6) { left: 80%; width: 94px;  height: 94px;  animation-duration: 31s; animation-delay: 6s; }
.hero-bokeh span:nth-child(7) { left: 91%; width: 52px;  height: 52px;  animation-duration: 22s; animation-delay: 12s; }
@keyframes bokehFloat {
  0%   { transform: translateY(0) scale(0.9); opacity: 0; }
  12%  { opacity: 0.7; }
  85%  { opacity: 0.42; }
  100% { transform: translateY(-118vh) scale(1.25); opacity: 0; }
}

/* feines Filmkorn */
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 150px 150px;
}

/* cineastische Vignette */
.hero-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(125% 95% at 50% 42%, transparent 52%, rgba(58, 42, 20, 0.13) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bokeh span { animation: none; opacity: 0.4; }
}

.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; }

.hero-kicker {
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--accent-dark);
  display: inline-block;
}

.hero-title {
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 34px;
  max-width: 15ch;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: lineUp 1s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes lineUp { to { transform: translateY(0); opacity: 1; } }

.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 46ch;
  margin: 0;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 44px; }

/* elegantes Load-In für Kicker, Sub, CTA */
.reveal-line { opacity: 0; transform: translateY(18px); animation: fadeUp 1s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* Scroll-Hinweis */
.hero-scroll {
  position: absolute;
  z-index: 2;
  left: 48px; bottom: 40px;
  width: 26px; height: 44px;
  display: flex; justify-content: center;
  border: 1px solid var(--hairline);
  border-radius: var(--pill);
  opacity: 0; animation: fadeUp 1s var(--ease) 1.2s forwards;
}
.hero-scroll span {
  width: 3px; height: 9px; margin-top: 8px;
  border-radius: 3px;
  background: var(--accent-dark);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 0; } 40% { opacity: 1; } 80% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* =========================================================
   BUTTONS — Premium Pills
   ========================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 17px 34px;
  border-radius: var(--pill);
  background: var(--ink);
  color: var(--bg);
  font-family: "Jost", sans-serif;
  font-size: 12.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background-color 0.45s var(--ease), color 0.45s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-ghost, .btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.btn-ghost:hover, .btn-outline:hover {
  background: rgba(32, 29, 24, 0.04);
  border-color: rgba(32, 29, 24, 0.4);
  box-shadow: none;
  transform: translateY(-3px);
}

/* =========================================================
   REVEAL — Section- & Element-Choreografie (IntersectionObserver)
   Nur aktiv, wenn JS läuft (html.js) → No-JS zeigt alles
   ========================================================= */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   PREMIUM-ÜBERSCHRIFTEN — Taupe-Akzent, Farbwechsel & Linie
   ========================================================= */
/* sanfter Farbwechsel Taupe → Anthrazit beim Einblenden (nur mit JS) */
@keyframes headingWash { from { color: var(--accent); } to { color: var(--ink); } }
html.js .reveal-head.is-visible h2,
html.js .about-text.is-visible h3,
html.js .features-grid .feature.is-visible h3 {
  animation: headingWash 1.15s var(--ease) 0.08s both;
}

/* animierte Taupe-Akzentlinie unter den Hauptüberschriften */
.reveal-head h2, .about-text h3 { position: relative; }
.reveal-head h2::after, .about-text h3::after {
  content: "";
  position: absolute; left: 0; bottom: -16px;
  width: 54px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(1); transform-origin: left;
  transition: transform 0.9s var(--ease) 0.15s;
}
html.js .reveal-head h2::after, html.js .about-text h3::after { transform: scaleX(0); }
html.js .reveal-head.is-visible h2::after,
html.js .about-text.is-visible h3::after { transform: scaleX(1); }

/* zarte, zentrierte Taupe-Linie unter den Werte-Überschriften */
.feature h3 { position: relative; display: inline-block; }
.feature h3::after {
  content: "";
  position: absolute; left: 50%; bottom: -9px; translate: -50% 0;
  width: 24px; height: 2px; border-radius: 2px; background: var(--accent);
  transform: scaleX(1); transform-origin: center;
  transition: transform 0.8s var(--ease) 0.25s;
}
html.js .feature h3::after { transform: scaleX(0); }
html.js .features-grid .feature.is-visible h3::after { transform: scaleX(1); }

/* =========================================================
   FEATURE STRIP — Markenwerte
   ========================================================= */
.features { background: var(--bg); padding: 40px 48px 32px; border-bottom: 1px solid var(--border); }
.features-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px 40px;
}
.feature { text-align: center; }
.feature svg { width: 32px; height: 32px; color: var(--accent-dark); stroke-width: 1.3; margin: 0 auto 20px; display: block; }
.feature h3 { font-family: "Playfair Display", serif; font-weight: 500; font-size: 22px; line-height: 1.2; margin: 0 0 12px; }
.feature p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin: 0 auto; max-width: 27ch; }

/* Werte-Reihe (statisch, nebeneinander, Überschriften auf gleicher Höhe) */
.valueband {
  padding: 40px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.valueband-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px 36px;
  align-items: start;
}
.vb-item { text-align: center; }
.vb-term {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  min-height: 2.5em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.vb-desc {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .valueband { padding: 34px 24px; }
  .valueband-inner { grid-template-columns: repeat(2, 1fr); gap: 34px 30px; }
}
@media (max-width: 600px) {
  .valueband { padding: 30px 20px; }
  .valueband-inner { grid-template-columns: 1fr; gap: 26px; }
  .vb-term { min-height: 0; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: var(--section-y) 48px;
  display: flex;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-photo {
  width: 300px; min-width: 300px;
  flex-shrink: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #cfc4b2 0%, #e9e2d5 100%);
  box-shadow: var(--shadow-md);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform 1.2s var(--ease); }
.about:hover .about-photo img { transform: scale(1.04); }

.eyebrow { font-size: 12px; letter-spacing: 2.5px; color: var(--accent-dark); text-transform: uppercase; }
.about h3 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.12; margin: 14px 0 22px; }
.about p { color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; font-size: 16.5px; max-width: 56ch; }
.about .btn { margin-top: 14px; }

/* =========================================================
   OFFERS
   ========================================================= */
.offers { background: var(--bg-panel); padding: var(--section-y) 48px; }
.offers-inner { max-width: 1200px; margin: 0 auto; }
.offers .eyebrow { display: block; margin-bottom: 10px; }
.offers h2 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.12; margin: 0 0 48px; max-width: 20ch; }

.offer-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.offer-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }

.offer-image { aspect-ratio: 4 / 3; background: linear-gradient(150deg, #ded7ca 0%, #efeae0 100%); overflow: hidden; }
.offer-image img { transition: transform 0.9s var(--ease); }
.offer-card:hover .offer-image img { transform: scale(1.05); }

.offer-image--book { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; padding: 14px; background: linear-gradient(150deg, #e0d9cd 0%, #f1ece2 100%); }
.offer-image--book img { max-height: 100%; max-width: 94%; width: auto; height: auto; object-fit: contain; box-shadow: var(--shadow-md); border-radius: 3px; }
.offer-image--course img { width: 100%; height: 100%; object-fit: cover; }
.offer-image--app { display: flex; align-items: center; justify-content: center; padding: 14px; background: linear-gradient(150deg, #e0d9cd 0%, #f1ece2 100%); }
.offer-image--app img { max-height: 100%; max-width: 88%; width: auto; height: auto; object-fit: contain; border-radius: 14px; }

.offer-card-body { padding: 26px 26px 30px; }
.offer-tag { font-size: 11px; letter-spacing: 2px; color: var(--accent-dark); text-transform: uppercase; }
.offer-card h4 { font-family: "Playfair Display", serif; font-size: 22px; margin: 12px 0 10px; line-height: 1.2; }
.offer-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin: 0 0 18px; }
.offer-link {
  font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.35s var(--ease), color 0.35s var(--ease);
}
.offer-link:hover { gap: 14px; color: var(--accent-dark); }

/* =========================================================
   FOOTER — Anthrazit-Anker (nur Startseite)
   ========================================================= */
footer { background: var(--ink); color: #f3efe8; padding: 96px 48px 56px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 44px; flex-wrap: wrap; }
.footer-note { display: flex; align-items: center; gap: 16px; max-width: 360px; }
.footer-note svg { width: 26px; height: 26px; color: var(--champagne); flex-shrink: 0; }
.footer-note strong { display: block; font-size: 12.5px; letter-spacing: 1.5px; color: #f3efe8; text-transform: uppercase; }
.footer-note span { font-size: 14px; color: rgba(243, 239, 232, 0.6); line-height: 1.6; }

.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 15px 20px; border: 1px solid rgba(243, 239, 232, 0.18);
  border-radius: var(--pill); background: rgba(243, 239, 232, 0.06);
  color: #f3efe8; font-family: "Jost", sans-serif; min-width: 190px;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.newsletter-form input::placeholder { color: rgba(243, 239, 232, 0.45); }
.newsletter-form input:focus { border-color: var(--champagne); background: rgba(243, 239, 232, 0.1); outline: none; }
.newsletter-form button { border: none; cursor: pointer; font-family: "Jost", sans-serif; }
footer .btn { background: var(--champagne); color: var(--ink); border-color: var(--champagne); }
footer .btn:hover { background: #f0e4c8; }

.socials { display: flex; gap: 14px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(243, 239, 232, 0.08); display: flex; align-items: center; justify-content: center; transition: background-color 0.35s var(--ease), transform 0.35s var(--ease); }
.socials a:hover { background: rgba(243, 239, 232, 0.16); transform: translateY(-3px); }
.socials svg { width: 16px; height: 16px; color: #f3efe8; }

.lead-msg { max-width: 1200px; margin: 24px auto 0; font-size: 14px; color: rgba(243, 239, 232, 0.85); font-style: italic; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  header { padding: 18px 32px; }
  header.scrolled { padding: 12px 32px; }
  nav { gap: 24px; }
  .hero { padding: 74px 32px 54px; }
  .hero-scroll { left: 32px; }
  .features, .about, .offers { padding-left: 32px; padding-right: 32px; }
  :root { --section-y: 104px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(227, 221, 210, 0.98);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px 32px 22px;
    display: none;
  }
  nav.open { display: flex; }
  nav a { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--border); }
  nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { border: none; padding: 15px 0; color: var(--accent-dark); border-radius: 0; }
  .nav-cta:hover { background: transparent; color: var(--ink); }

  /* Dropdown im mobilen Menü: Untermenü fest sichtbar & eingerückt */
  .nav-drop { width: 100%; }
  .nav-drop::after { display: none; }
  .nav-drop-trigger {
    width: 100%; justify-content: space-between;
    padding: 15px 0; border-bottom: 1px solid var(--border);
  }
  .nav-drop-trigger::after { display: none; }
  .nav-drop-trigger svg { width: 12px; height: 12px; }
  .nav-drop-menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; padding: 4px 0 4px 16px; margin: 0;
    background: transparent; border: none; border-radius: 0; box-shadow: none; gap: 0;
  }
  .nav-drop-menu a {
    padding: 13px 0; border-radius: 0; border-bottom: 1px solid var(--border);
    color: var(--accent-dark);
  }
  .nav-drop-menu a:hover { background: transparent; color: var(--ink); }

  .hero { min-height: 58vh; padding: 66px 24px 20px; }
  .hero-scroll { display: none; }

  .about { flex-direction: column; padding: 90px 24px; gap: 40px; align-items: flex-start; }
  .about-photo { width: 220px; min-width: 220px; }

  .offer-cards { grid-template-columns: repeat(2, 1fr); }
  .features { padding: 32px 24px 30px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 46px 32px; }
  .offers { padding: 90px 24px; }
  footer { padding: 70px 24px 44px; }
}

@media (max-width: 600px) {
  header { padding: 16px 20px; }
  .logo-text h1 { font-size: 18px; letter-spacing: 2px; }
  .logo-text span { font-size: 9px; letter-spacing: 2.5px; }

  .hero { padding: 60px 20px 18px; min-height: 54vh; }
  .hero-title { font-size: clamp(34px, 10vw, 48px); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .features { padding: 28px 20px 26px; }
  .features-grid { grid-template-columns: 1fr; gap: 40px; }

  .about { padding: 70px 20px; }
  .offers { padding: 70px 20px; }
  .offer-cards { grid-template-columns: 1fr; gap: 18px; }

  footer { padding: 56px 20px 40px; }
  .footer-inner { gap: 28px; }
  .footer-note { max-width: none; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { flex: 1 1 100%; min-width: 0; }
  .newsletter-form button { width: 100%; }
}

/* =========================================================
   MOTION-PRÄFERENZ
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .hero-title .line > span, .reveal-line, .hero-scroll { opacity: 1 !important; transform: none !important; }
  html.js .reveal { opacity: 1 !important; transform: none !important; }
  html.js .reveal-head h2::after, html.js .about-text h3::after, html.js .feature h3::after { transform: scaleX(1) !important; }
}

/* =========================================================
   PREMIUM CUSTOM CURSOR (nur Desktop / feiner Zeiger)
   ========================================================= */
@media (hover: hover) and (pointer: fine) {
  html.custom-cursor, html.custom-cursor * { cursor: none !important; }

  .cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--ink);
    transition: opacity 0.3s var(--ease), transform 0.2s var(--ease);
  }
  .cursor-ring {
    width: 38px; height: 38px;
    border: 1px solid rgba(32, 29, 24, 0.35);
    transition: width 0.4s var(--ease), height 0.4s var(--ease), background-color 0.4s var(--ease), border-color 0.4s var(--ease), opacity 0.3s var(--ease);
  }
  /* über Buttons/Links: größer + transparent */
  .cursor-ring.is-hover { width: 66px; height: 66px; background: rgba(176, 141, 79, 0.10); border-color: rgba(176, 141, 79, 0.6); }
  .cursor-hidden { opacity: 0 !important; }
}

/* Home-Teaser (z.B. Maske-Test) */
.teaser {
  background: var(--bg-panel);
  padding: 60px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.teaser-inner { max-width: 720px; margin: 0 auto; }
.teaser .eyebrow { display: block; margin-bottom: 14px; }
.teaser h2 { font-family: "Playfair Display", serif; font-weight: 500; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15; margin: 0 0 18px; }
.teaser p { color: var(--text-muted); font-size: 17px; line-height: 1.7; max-width: 560px; margin: 0 auto 30px; }
@media (max-width: 600px) { .teaser { padding: 44px 20px; } }

/* =========================================================
   SITE-GATE — Passwortschutz der öffentlichen Seiten
   ========================================================= */
html.sc-locked, html.sc-locked body { overflow: hidden !important; height: 100%; }
html.sc-locked body > *:not(#sc-gate) { display: none !important; }
#sc-gate { display: none; }
html.sc-locked #sc-gate {
  display: flex; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center; padding: 24px;
  background: linear-gradient(165deg, #e8e2d8 0%, #ded7ca 58%, #d3cabb 100%);
  font-family: "Jost", system-ui, sans-serif;
}
.sc-card {
  width: 100%; max-width: 420px; text-align: center;
  background: rgba(255,255,255,0.30); border: 1px solid #cec6b6; border-radius: 22px;
  padding: 46px 38px; box-shadow: 0 34px 80px -46px rgba(33,29,22,.5);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.sc-card img { width: 40px; height: auto; margin: 0 auto 18px; display: block; }
.sc-name { color: #8a7a66; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; margin: 0 0 6px; }
.sc-card h1 { font-family: "Playfair Display", Georgia, serif; font-weight: 500; font-size: 30px; letter-spacing: -0.01em; color: #211d16; margin: 0; }
.sc-lead { color: #6c6357; font-size: 15px; line-height: 1.6; margin: 18px 0 24px; }
.sc-form { display: flex; flex-direction: column; gap: 12px; }
.sc-form input { font-family: inherit; font-size: 15px; text-align: center; letter-spacing: 1px; padding: 14px 16px; border-radius: 100px; border: 1px solid #cec6b6; background: rgba(255,255,255,.55); color: #211d16; }
.sc-form input:focus { outline: none; border-color: #6d5f4e; }
.sc-form button { font-family: inherit; font-size: 12.5px; letter-spacing: 1.4px; text-transform: uppercase; padding: 15px 16px; border-radius: 100px; border: 1px solid #211d16; background: #211d16; color: #e3ddd2; cursor: pointer; transition: transform .4s cubic-bezier(0.22,1,0.36,1); }
.sc-form button:hover { transform: translateY(-2px); }
.sc-err { color: #9a4a3a; font-size: 13.5px; margin-top: 12px; min-height: 1.1em; }
