/* NORDVAKA - Pure HTML/CSS/JS Version */

/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #0F0F10;
  --bg-secondary: #141416;
  --bg-tertiary: #1C1C1E;
  --gold: #C8A55D;
  --gold-light: #D4B76E;
  --gold-dark: #B08D4A;
  --text-primary: #F4F1EA;
  --text-secondary: #A7A29A;
  --border-color: rgba(255, 255, 255, 0.1);
  /* Volle Gerätehöhe: Fallback → dynamisches Viewport (Mobile-Browserleisten) */
  --nv-vh: 100vh;
}

@supports (min-height: 100svh) {
  :root {
    --nv-vh: 100svh;
  }
}

@supports (min-height: 100dvh) {
  :root {
    --nv-vh: 100dvh;
  }
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100%;
  /* Fixierte Nav + Notch: Ankerziele nicht unter der Leiste */
  scroll-padding-top: max(4rem, calc(env(safe-area-inset-top, 0px) + 3rem));
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  line-height: 1.2;
}

.font-serif {
  font-family: 'Cinzel', serif;
}

.font-sans {
  font-family: 'Inter', sans-serif;
}

/* ===== GRAIN OVERLAY ===== */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ===== NAVIGATION ===== */
.nav-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

.nav-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hauptnavigation: über gepinnten Sektionen (Hero/Manifesto z-index 10–20) */
.main-nav {
  z-index: 200 !important;
  padding-top: env(safe-area-inset-top, 0px);
}

/* Mobile-Menü ausklappbar, scrollbar bei vielen Links */
.main-nav .mobile-menu {
  z-index: 201;
  max-height: min(75vh, 480px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Navigation: Desktop-Zeile nur ab Tablet (war früher per Inline-Style) */
.desktop-nav {
  display: none;
  align-items: center;
}

@media (max-width: 767px) {
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-gold { color: var(--gold) !important; }
.text-offwhite { color: var(--text-primary) !important; }
.text-mutedwarm { color: var(--text-secondary) !important; }
.bg-anthracite { background-color: var(--bg-primary) !important; }
.bg-anthracite-light { background-color: var(--bg-secondary) !important; }

.hidden {
  display: none !important;
}

.tracking-wide { letter-spacing: 0.08em; }
.tracking-wider { letter-spacing: 0.12em; }
.tracking-widest { letter-spacing: 0.18em; }

/* ===== SECTIONS ===== */
section {
  position: relative;
  width: 100%;
}

/* ===== STARTSEITE: volle Gerätehöhe (nv-vh) + Safe Area ===== */
body.nv-home main > section {
  min-height: var(--nv-vh);
  width: 100%;
  box-sizing: border-box;
}

body.nv-home .hero-section {
  min-height: var(--nv-vh);
  height: auto;
}

body.nv-home .scroll-hint {
  bottom: max(1.75rem, env(safe-area-inset-bottom, 0px));
}

body.nv-home .concept-content--wide {
  padding-left: max(clamp(1rem, 4vw, 3rem), calc(env(safe-area-inset-left, 0px) + 0.25rem));
  padding-right: max(clamp(1rem, 4vw, 3rem), calc(env(safe-area-inset-right, 0px) + 0.25rem));
}

body.nv-home .team-open-inner,
body.nv-home .retreats-open-inner,
body.nv-home .closing-open-inner,
body.nv-home .nv-testimonials-inner {
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

body.nv-home .booking-section .section-container {
  padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
}

body.nv-home main > section.nv-testimonials-section {
  min-height: auto;
}

body.nv-home main > .nv-section-divider {
  min-height: auto;
}

body.nv-home .hero-content {
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  padding-top: max(0.25rem, env(safe-area-inset-top, 0px));
}

@media (max-width: 767px) {
  body.nv-home .section-container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  body.nv-home .booking-section .section-container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent, rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
}

.hero-logo {
  width: 8rem;
  height: 8rem;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-logo {
    width: 10rem;
    height: 10rem;
  }
}

@media (min-width: 1024px) {
  .hero-logo {
    width: 12rem;
    height: 12rem;
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.65rem, 1.5vw, 0.875rem);
  color: var(--text-secondary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-runes {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.3em;
  margin-bottom: 3rem;
}

.scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.scroll-hint span {
  display: block;
  font-size: 0.625rem;
  color: var(--text-secondary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
}

/* ===== MANIFESTO SECTION ===== */
.manifesto-section {
  min-height: min(100vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.manifesto-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    160deg,
    rgba(15, 15, 16, 0.62) 0%,
    rgba(15, 15, 16, 0.38) 42%,
    rgba(15, 15, 16, 0.82) 100%
  );
}

.manifesto-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(52rem, 100%);
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem);
  margin: 0 auto;
  text-align: center;
}

.manifesto-kicker {
  font-family: "Inter", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.95;
}

.manifesto-title {
  font-size: clamp(1.65rem, 4.2vw, 2.65rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.22;
  margin-bottom: 1.15rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.manifesto-inner .hairline {
  width: 2.75rem;
  height: 2px;
  margin: 0 auto 1.45rem;
  background: linear-gradient(90deg, var(--gold), rgba(200, 165, 93, 0.35));
  border-radius: 1px;
  transform-origin: center center;
}

.manifesto-text {
  font-size: clamp(0.96rem, 1.35vw, 1.06rem);
  font-weight: 300;
  color: rgba(232, 226, 218, 0.9);
  line-height: 1.82;
  max-width: 38rem;
  margin: 0 auto;
}

.hairline {
  width: 200px;
  height: 1px;
  background: rgba(200, 165, 93, 0.3);
  margin: 0 auto;
}

/* ===== CONCEPT SECTION ===== */
.concept-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0 max(4rem, env(safe-area-inset-bottom, 0px));
  position: relative;
}

.concept-section .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(15, 15, 16, 0.72) 0%,
    rgba(15, 15, 16, 0.55) 45%,
    rgba(15, 15, 16, 0.78) 100%
  );
}

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

.concept-content--wide {
  width: 100%;
  max-width: min(96rem, 100%);
  padding-left: clamp(1rem, 4vw, 3rem);
  padding-right: clamp(1rem, 4vw, 3rem);
  padding-top: 0;
  padding-bottom: 0;
}

.concept-label {
  font-size: 0.625rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.concept-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.concept-lead {
  max-width: 42em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 300;
}

.concept-lead strong {
  color: var(--text-primary);
  font-weight: 500;
}

.concept-paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  text-align: left;
}

/* Offenes Konzept: editorial wie team.html, ohne Karten-Rahmen */
.concept-paths--open {
  gap: 2rem;
  margin-top: 0.35rem;
  align-items: start;
}

.concept-section .concept-card.concept-column {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
  position: relative;
}

.concept-column-inner {
  position: relative;
  z-index: 1;
  padding: 0.35rem 0;
  max-width: 28rem;
}

.concept-column--energy::before {
  content: "";
  position: absolute;
  inset: -12% 5% 35% -18%;
  background: radial-gradient(
    ellipse 85% 70% at 12% 8%,
    rgba(200, 165, 93, 0.09) 0%,
    transparent 72%
  );
  pointer-events: none;
}

.concept-column--body::before {
  content: "";
  position: absolute;
  inset: 28% -14% -14% 8%;
  background: radial-gradient(
    ellipse 75% 60% at 88% 92%,
    rgba(200, 165, 93, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.concept-column[data-rune]::after {
  content: attr(data-rune);
  position: absolute;
  top: -0.25rem;
  right: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.concept-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.25rem 0 0.5rem;
  min-height: 3.5rem;
}

.concept-connector__svg {
  display: block;
  color: var(--gold);
}

.concept-connector__svg--desktop {
  display: none;
  width: 100%;
  max-width: 5.5rem;
  height: auto;
  min-height: 12rem;
}

.concept-connector__svg--mobile {
  width: 100%;
  max-width: 17.5rem;
  height: auto;
}

.concept-connector-label {
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.72;
  text-align: center;
}

@media (min-width: 768px) {
  .concept-paths--open {
    grid-template-columns: 1fr minmax(4.5rem, 6.5rem) 1fr;
    gap: clamp(1.25rem, 3vw, 2.75rem);
    align-items: start;
  }

  .concept-column--energy .concept-column-inner {
    margin-right: auto;
    padding-right: 0.5rem;
  }

  .concept-column--body .concept-column-inner {
    margin-left: auto;
    padding-left: 0.5rem;
  }

  .concept-connector {
    align-self: stretch;
    padding: 2rem 0.25rem;
    justify-content: center;
    min-height: 14rem;
  }

  .concept-connector__svg--desktop {
    display: block;
  }

  .concept-connector__svg--mobile {
    display: none;
  }

  .desktop-nav {
    display: flex !important;
  }

  .mobile-menu-btn {
    display: none !important;
  }
}

.concept-tile-name {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.concept-tile-accent {
  display: block;
  width: 2.75rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 165, 93, 0.35));
  margin-bottom: 0.85rem;
}

.concept-tile-role {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  opacity: 0.92;
}

.concept-path-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 1rem;
}

.concept-path-desc strong {
  color: var(--text-primary);
  font-weight: 500;
}

.concept-outro {
  margin-top: 2.5rem;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: rgba(244, 241, 234, 0.88);
}

.card-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(200, 165, 93, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.card-title {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.concept-card .card-list {
  margin-top: 0.25rem;
}

.card-list {
  list-style: none;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.card-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* ===== TEAM SECTION ===== */
.team-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.team-card {
  background: var(--bg-secondary);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.team-image {
  height: 280px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .team-image {
    height: 320px;
  }
}

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

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

.team-info {
  padding: 1.5rem;
}

.team-link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.team-image-link {
  display: block;
  width: 100%;
  cursor: pointer;
}

.team-card > .team-link {
  display: block;
  width: 100%;
}

.team-header .team-link {
  display: inline-flex;
  width: auto;
  align-items: center;
  gap: 0.5rem;
}

.team-link:hover .team-name,
.team-link:hover .team-role {
  color: var(--gold);
}

.team-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 6px;
}

.team-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.team-name {
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}

.team-separator {
  color: var(--gold);
  opacity: 0.6;
}

.team-role {
  font-size: 0.875rem;
  color: var(--gold);
}

.team-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.team-tagline {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

/* ===== TEAM SECTION – Startseite: offen, Naturhintergrund, keine Karten ===== */
.team-section--open {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 12vw, 7rem) max(1rem, env(safe-area-inset-right, 0px)) max(clamp(4rem, 12vw, 7rem), env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
}

.team-section--open .hero-bg {
  z-index: 0;
}

.team-section--open .team-open-scrim {
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 16, 0.9) 0%,
    rgba(15, 15, 16, 0.58) 42%,
    rgba(15, 15, 16, 0.82) 100%
  );
}

.team-section--open .nv-team-hero-img {
  object-position: center 42%;
}

/* Mobile: Team – Bildband oben, Inhalt darunter */
@media (max-width: 767px) {
  .team-section.team-section--open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: auto !important;
    padding: 0;
    overflow: hidden;
  }

  .team-section.team-section--open .hero-bg {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    width: 100%;
    height: clamp(12rem, 38vw, 16rem);
    max-height: 260px;
    z-index: 0;
  }

  .team-section.team-section--open .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-section.team-section--open .nv-team-hero-img {
    object-position: center 55%;
  }

  .team-section.team-section--open .team-open-scrim {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(12rem, 38vw, 16rem);
    max-height: 260px;
    bottom: auto;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(15, 15, 16, 0.35) 0%,
      rgba(15, 15, 16, 0.55) 100%
    );
  }

  .team-section.team-section--open .team-open-inner {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    width: 100%;
    box-sizing: border-box;
    background: var(--bg-primary, #0f0f10);
    padding: max(2rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px)) max(2.5rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  }
}

.team-open-inner {
  position: relative;
  z-index: 2;
  max-width: min(56rem, 100%);
}

.team-open-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.75rem;
}

.team-section--open .team-open-title {
  text-align: center;
  margin-bottom: clamp(2.25rem, 6vw, 3.25rem);
}

.team-open-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

@media (min-width: 768px) {
  .team-open-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }
}

@media (min-width: 960px) {
  .team-open-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

.team-section--open .team-person {
  background: transparent;
  border: none;
  box-shadow: none;
}

.team-person-inner {
  position: relative;
  padding: 1.5rem 1.25rem 1.6rem 1.5rem;
  max-width: 26rem;
}

.team-person--nico .team-person-inner {
  margin-right: auto;
  border-left: 2px solid rgba(200, 165, 93, 0.55);
  background: linear-gradient(
    105deg,
    rgba(200, 165, 93, 0.1) 0%,
    rgba(15, 15, 16, 0.32) 58%,
    transparent 100%
  );
}

.team-person--valentin .team-person-inner {
  margin-left: auto;
  border-left: 2px solid rgba(165, 188, 205, 0.52);
  background: linear-gradient(
    105deg,
    rgba(165, 188, 205, 0.11) 0%,
    rgba(15, 15, 16, 0.34) 58%,
    transparent 100%
  );
}

.team-person--sarah .team-person-inner {
  margin-left: auto;
  margin-right: auto;
  border-left: 2px solid rgba(90, 130, 100, 0.55);
  background: linear-gradient(
    105deg,
    rgba(60, 100, 80, 0.14) 0%,
    rgba(15, 15, 16, 0.32) 58%,
    transparent 100%
  );
}

.team-o-name {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.team-o-accent {
  display: block;
  width: 2.75rem;
  height: 2px;
  margin-bottom: 1rem;
}

.team-o-accent--gold {
  background: linear-gradient(90deg, var(--gold), rgba(200, 165, 93, 0.25));
}

.team-o-accent--mist {
  background: linear-gradient(90deg, rgba(195, 215, 225, 0.9), rgba(165, 188, 205, 0.2));
}

.team-o-accent--veil {
  background: linear-gradient(90deg, rgba(120, 160, 130, 0.9), rgba(60, 100, 80, 0.25));
}

.team-o-role {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.95;
}

.team-person--valentin .team-o-role {
  color: rgba(200, 212, 220, 0.96);
}

.team-person--sarah .team-o-role {
  color: rgba(170, 200, 175, 0.96);
}

.team-o-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 1.35rem;
}

.team-o-more {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 165, 93, 0.38);
  padding-bottom: 0.2rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.team-o-more:hover {
  color: var(--text-primary);
  border-color: var(--gold);
}

.team-o-more:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.team-person--valentin .team-o-more {
  border-bottom-color: rgba(165, 188, 205, 0.45);
  color: rgba(208, 218, 226, 0.96);
}

.team-person--valentin .team-o-more:hover {
  color: var(--text-primary);
  border-color: rgba(190, 210, 220, 0.85);
}

.team-person--valentin .team-o-more:focus-visible {
  outline-color: rgba(190, 210, 220, 0.9);
}

.team-person--sarah .team-o-more {
  border-bottom-color: rgba(90, 130, 100, 0.45);
  color: rgba(190, 215, 195, 0.96);
}

.team-person--sarah .team-o-more:hover {
  color: var(--text-primary);
  border-color: rgba(120, 160, 130, 0.85);
}

.team-person--sarah .team-o-more:focus-visible {
  outline-color: rgba(120, 160, 130, 0.9);
}

.team-tagline--open {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
}

@media (max-width: 767px) {
  .team-person--nico .team-person-inner,
  .team-person--valentin .team-person-inner,
  .team-person--sarah .team-person-inner {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}

/* ===== RETREATS SECTION ===== */
.retreats-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}

.retreats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .retreats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.retreat-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.retreat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.retreat-card::before {
  content: attr(data-rune);
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.05;
  pointer-events: none;
}

.retreat-rune {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(200, 165, 93, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.retreat-rune span {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--gold);
}

.retreat-name {
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.retreat-subtitle {
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.retreat-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.retreat-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.retreat-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.retreat-meta svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  opacity: 0.6;
}

.retreat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}

.retreat-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.retreat-link:hover::after {
  transform: scaleX(1);
}

.retreat-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.retreat-link:hover svg {
  transform: translateX(4px);
}

/* ===== RETREATS – Startseite: offen, Runen, norwegischer Hintergrund ===== */
.retreats-section--open {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 12vw, 7rem) max(1rem, env(safe-area-inset-right, 0px)) max(clamp(4rem, 12vw, 7rem), env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
}

.retreats-section--open .hero-bg {
  z-index: 0;
}

.retreats-section--open .retreats-open-scrim {
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 16, 0.92) 0%,
    rgba(15, 15, 16, 0.55) 45%,
    rgba(15, 15, 16, 0.88) 100%
  );
}

.retreats-open-inner {
  position: relative;
  z-index: 2;
  max-width: min(72rem, 100%);
}

.retreats-open-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.75rem;
}

.retreats-section--open .retreats-open-title {
  text-align: center;
  margin-bottom: clamp(2.5rem, 7vw, 4rem);
}

.retreats-path {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: start;
}

@media (min-width: 768px) {
  .retreats-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2.25rem);
    align-items: start;
  }

  /* Gestaffelt nebeneinander: außen oben, Mitte tiefer – wie Pfad / Zickzack */
  .retreat-step--1 {
    margin-top: 0;
  }

  .retreat-step--2 {
    margin-top: clamp(2.75rem, 7vw, 4.25rem);
  }

  .retreat-step--3 {
    margin-top: 0;
  }
}

.retreats-section--open .retreat-card.retreat-step {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
  transition: none;
}

.retreats-section--open .retreat-card.retreat-step:hover {
  transform: none;
  box-shadow: none;
}

.retreats-section--open .retreat-card.retreat-step::before {
  content: none;
}

.retreat-step-inner {
  position: relative;
  z-index: 1;
  max-width: 22rem;
}

.retreat-step--1 .retreat-step-inner,
.retreat-step--3 .retreat-step-inner {
  margin-left: 0;
  margin-right: auto;
}

.retreat-step--2 .retreat-step-inner {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .retreat-step--3 .retreat-step-inner {
    margin-left: auto;
    margin-right: 0;
  }
}

.retreat-step-rune {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(3.25rem, 9vw, 6.25rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--gold);
  opacity: 0.26;
  margin-bottom: 0.85rem;
  user-select: none;
  pointer-events: none;
}

.retreats-section--open .retreat-name {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.retreats-section--open .retreat-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.retreats-section--open .retreat-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.retreats-section--open .retreat-meta {
  flex-wrap: wrap;
  margin-bottom: 1.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.retreats-section--open .retreat-link {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

@media (max-width: 767px) {
  .retreat-step--2,
  .retreat-step--3 {
    margin-top: 0;
  }

  .retreat-step-inner {
    max-width: none;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* ===== BOOKING SECTION ===== */
.booking-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  scroll-margin-top: 5.5rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .booking-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }
}

.booking-label {
  font-size: 0.625rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.booking-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.booking-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(200, 165, 93, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.trust-item span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Brevo Form Styles */
.brevo-form-container {
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid var(--gold);
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.625rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-primary);
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  height: 36px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(200, 165, 93, 0.2);
}

.form-input::placeholder {
  color: #6b7280;
}

.checkbox-group {
  margin-bottom: 1rem;
}

.checkbox-group-label {
  display: block;
  font-size: 0.625rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-item span {
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.form-declaration {
  font-size: 0.6875rem;
  color: #687484;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.form-declaration a {
  color: var(--gold);
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 8px;
  padding: 0.875rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: block;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Kontaktformular */
.contact-form-wrap {
  position: relative;
}

.contact-form {
  width: 100%;
}

.form-textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-primary);
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(200, 165, 93, 0.2);
}

.form-select {
  height: auto;
  min-height: 36px;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: menulist;
}

.contact-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-hint {
  font-size: 0.625rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.contact-form-note {
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ===== CLOSING SECTION ===== */
.closing-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.closing-section--open {
  padding: clamp(3.5rem, 10vw, 6rem) max(1rem, env(safe-area-inset-right, 0px)) clamp(3.5rem, 10vw, 6rem) max(1rem, env(safe-area-inset-left, 0px));
  min-height: var(--nv-vh);
  scroll-margin-top: 5.5rem;
}

.closing-section--open .hero-bg {
  z-index: 0;
}

.closing-section--open .closing-open-scrim {
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 16, 0.88) 0%,
    rgba(15, 15, 16, 0.62) 45%,
    rgba(15, 15, 16, 0.9) 100%
  );
}

.closing-content {
  text-align: center;
  padding: 4rem 1.5rem;
}

.closing-open-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(40rem, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.closing-headline {
  font-size: clamp(1.65rem, 5.2vw, 3rem);
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
}

.closing-subline {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.55;
  margin: 0 0 clamp(2rem, 5vw, 2.75rem);
  max-width: 32rem;
}

.closing-emoji {
  margin-right: 0.35rem;
  opacity: 0.95;
}

.closing-block {
  width: 100%;
  max-width: 34rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.closing-block-icon {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0.85;
}

.closing-block p:not(.closing-block-icon) {
  font-size: clamp(0.92rem, 2.1vw, 1.05rem);
  line-height: 1.62;
  color: var(--text-primary);
  font-weight: 300;
  margin: 0 0 0.5rem;
}

.closing-block p:not(.closing-block-icon):last-child {
  margin-bottom: 0;
}

.closing-confront {
  color: var(--text-primary);
}

.closing-final p:not(.closing-block-icon) {
  font-weight: 400;
  letter-spacing: 0.02em;
}

.closing-final p:not(.closing-block-icon):last-of-type {
  color: var(--gold);
}

.closing-cta-wrap {
  margin: clamp(0.5rem, 2vw, 1rem) 0 clamp(1.5rem, 4vw, 2rem);
  width: 100%;
  display: flex;
  justify-content: center;
}

.closing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.95rem 1.75rem;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.closing-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.closing-cta:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.closing-cta-emoji {
  font-size: 1.1rem;
  line-height: 1;
}

.closing-cta-text {
  flex: 0 1 auto;
}

.closing-cta svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.closing-cta:hover svg {
  transform: translateX(4px);
}

.closing-micro {
  font-size: clamp(0.58rem, 1.5vw, 0.68rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.88;
  margin: 0;
  max-width: 28rem;
  line-height: 1.5;
}

/* Legacy-Klassen (falls noch verwendet) */
.closing-title {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.closing-subtitle {
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 1rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  opacity: 0.5;
}

.footer-copy {
  font-size: 0.625rem;
  color: var(--text-secondary);
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.625rem;
  color: var(--text-secondary);
  opacity: 0.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-link {
  cursor: pointer;
}

.lang-switch-link {
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.lang-switch-link:hover {
  color: var(--bg-primary) !important;
  border-color: var(--gold-light) !important;
  background: var(--gold-light);
}

/* ===== IMPRESSUM PANEL (slide from right, 300ms) ===== */
.impressum-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.impressum-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 100%);
  max-width: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 300ms ease;
  overflow: hidden;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
}

.impressum-panel-inner {
  padding: 2rem 1.5rem;
  padding-top: 3rem;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.impressum-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.impressum-close-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.impressum-title {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.impressum-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.impressum-text p {
  margin-bottom: 0.75rem;
}

.impressum-text strong {
  color: var(--text-primary);
}

body.impressum-open .impressum-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.impressum-open .impressum-panel {
  transform: translateX(0);
}

@media (max-width: 480px) {
  .impressum-panel {
    width: 100%;
  }
  .impressum-panel-inner {
    padding: 1.5rem 1rem;
    padding-top: 2.5rem;
  }
}

/* ===== RETREAT DETAIL PAGES ===== */
.detail-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(15, 15, 16, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding-top: env(safe-area-inset-top, 0px);
}

.detail-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem clamp(0.75rem, 3vw, 1.5rem);
  flex-wrap: nowrap;
  min-width: 0;
}

@media (max-width: 480px) {
  .detail-nav-content {
    padding: 0.65rem 0.6rem;
    gap: 0.35rem;
  }
  .detail-nav a,
  .detail-nav button {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    gap: 0.25rem;
  }
  .detail-nav a svg,
  .detail-nav button svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  .detail-nav-logo {
    font-size: 0.65rem;
    max-width: min(42vw, 9.5rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    flex: 1 1 auto;
    min-width: 0;
    display: block;
  }
}

.detail-nav a, .detail-nav button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.detail-nav a:hover, .detail-nav button:hover {
  color: var(--gold);
}

.detail-nav-logo {
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

/* Einheitliche Kopfzeile (Logo + Menü; serverseitiges HTML) */
.detail-nav .mobile-menu {
  z-index: 201;
  max-height: min(75vh, 480px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-header-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(0.5rem, 2vw, 1.25rem);
  row-gap: 0.5rem;
  padding: 0.85rem clamp(0.75rem, 3vw, 1.5rem);
  min-width: 0;
}

.site-header-logo {
  grid-column: 1;
  justify-self: start;
  flex-shrink: 0;
  font-family: 'Cinzel', serif;
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-decoration: none;
}

.site-header-logo:hover {
  color: var(--gold-light);
}

.site-header-nav.desktop-nav {
  grid-column: 2;
  justify-self: center;
  align-items: center;
  gap: clamp(1.25rem, 2.8vw, 2.75rem);
  flex-wrap: wrap;
  justify-content: center;
}

.site-header-nav.desktop-nav > a {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-header-nav.desktop-nav > a:hover {
  color: var(--gold);
}

/* Einziger hervorgehobener Menüpunkt (VEGVÖRÐR) – durchgängig Gold wie Akzentfarbe */
.site-header-nav.desktop-nav > a.site-nav-feature {
  color: var(--gold);
  font-weight: 600;
  text-shadow: 0 0 24px rgba(200, 165, 93, 0.25);
}

.site-header-nav.desktop-nav > a.site-nav-feature:hover {
  color: var(--gold-light);
}

/* Gold-Link „Kostenloses eBook“ / „Free eBook“ rechts neben Sprachumschaltung */
.site-header-right > a.site-nav-feature.site-header-ebook {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(200, 165, 93, 0.22);
  margin-right: 0.35rem;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.site-header-right > a.site-nav-feature.site-header-ebook:hover {
  color: var(--gold-light);
}

.site-header-mobile-heading.site-nav-feature {
  color: var(--gold) !important;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0;
}

.site-nav-dd {
  position: relative;
}

.site-nav-dd-trigger {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

a.site-nav-dd-trigger {
  text-decoration: none;
  display: inline;
}

.site-nav-dd-trigger:hover,
.site-nav-dd:focus-within .site-nav-dd-trigger {
  color: var(--gold);
}

.site-nav-dd-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.35rem 0;
  min-width: 11rem;
  list-style: none;
  background: rgba(15, 15, 16, 0.98);
  border: 1px solid var(--border-color);
  z-index: 220;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

/* Unsichtbare Brücke zwischen Trigger und Panel – sonst verliert :hover in der Lücke */
.site-nav-dd-panel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.65rem;
}

.site-nav-dd:hover .site-nav-dd-panel,
.site-nav-dd:focus-within .site-nav-dd-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav-dd-panel a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease, background 0.2s ease;
}

.site-nav-dd-panel a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

.site-header-right {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 0.85rem);
  flex-shrink: 0;
  min-width: 0;
}

.site-header-back {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.site-header-back:hover {
  color: var(--gold);
}

.site-header-right .site-header-lang.lang-switch-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(200, 165, 93, 0.45);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.site-header-right .site-header-lang.lang-switch-link:hover {
  color: var(--gold-light);
  border-color: rgba(200, 165, 93, 0.65);
}

.site-header-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.site-header-mobile-group {
  margin-bottom: 1.1rem;
}

.site-header-mobile-group:last-of-type {
  margin-bottom: 0;
}

/* Hauptebenen: Retreats, Blog, Über uns, Kontakt — NORDVAKA-Gold */
.site-header-mobile-heading,
.site-header-mobile-inner a.site-header-mobile-heading {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold) !important;
  text-decoration: none;
  padding: 0.45rem 0 0.35rem;
  min-height: auto;
}

a.site-header-mobile-heading:hover {
  color: var(--gold-light) !important;
}

span.site-header-mobile-heading {
  cursor: default;
}

/* Unterpunkte (Retreat-Namen, Team) — sekundär, eingerückt */
.site-header-mobile-sub {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.15rem;
  margin-left: 0.35rem;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(200, 165, 93, 0.28);
}

.site-header-mobile-sub a {
  font-size: 0.875rem;
  line-height: 1.35;
  padding: 0.32rem 0;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-header-mobile-sub a:hover {
  color: var(--gold);
}

/* Meta: Startseite, Zurück — dezent unterhalb der Gruppen */
.site-header-mobile-meta {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.85;
  text-decoration: none;
  padding: 0.5rem 0 0.25rem;
  margin-top: 0.35rem;
}

.site-header-mobile-meta:hover {
  color: var(--gold);
}

.site-header-mobile-inner > .lang-switch-link {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header-mobile-inner .lang-switch-link {
  color: var(--gold);
}

.site-header-mobile-inner .lang-switch-link:hover {
  color: var(--gold-light);
}

/* Hauptseite: gleiche Leiste wie detail-nav */
.main-nav .site-header-bar {
  padding: 1.25rem 1.5rem;
}

.main-nav .mobile-menu {
  z-index: 201;
  max-height: min(75vh, 480px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
  .site-header-bar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem clamp(0.6rem, 3vw, 1rem);
  }

  .site-header-logo {
    grid-column: unset;
    justify-self: unset;
    max-width: min(52vw, 11rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header-nav.desktop-nav {
    display: none !important;
  }

  .site-header-right {
    grid-column: unset;
    justify-self: unset;
    margin-left: auto;
    gap: 0.55rem;
  }

  .mobile-menu-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }

  .site-header-right .site-header-lang.lang-switch-link {
    min-height: 40px;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.55rem;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .site-header-bar {
    padding: 0.65rem 0.55rem;
  }
  .site-header-back {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
  .site-header-right .site-header-lang.lang-switch-link {
    font-size: 0.65rem;
    padding: 0.28rem 0.48rem;
    min-width: 38px;
    min-height: 38px;
  }
}

/* Brotkrumen (Retreat-Unterseiten) */
.nv-breadcrumbs {
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.detail-hero--with-bc .nv-breadcrumbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 3vw, 1.5rem);
  padding-top: calc(4.6rem + env(safe-area-inset-top, 0px));
  padding-bottom: 0.5rem;
  box-sizing: border-box;
}

.detail-hero--with-bc .detail-hero-content {
  padding-top: 6.5rem;
}

.nv-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nv-breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nv-breadcrumbs a:hover {
  color: var(--gold);
}

.nv-breadcrumbs-sep {
  opacity: 0.35;
  user-select: none;
}

.nv-breadcrumbs [aria-current='page'] {
  color: var(--text-primary);
  opacity: 0.9;
}

.detail-hero--with-bc {
  padding-top: 0;
}

.detail-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
  position: relative;
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.detail-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 15, 16, 0.7), rgba(15, 15, 16, 0.5), var(--bg-primary));
  z-index: 1;
}

.detail-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}

.detail-hero-label {
  font-size: 0.625rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.detail-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.detail-hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.detail-hero-line {
  width: 4rem;
  height: 1px;
  background: rgba(200, 165, 93, 0.4);
  margin: 0 auto;
}

.detail-content {
  max-width: 768px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* Kontaktformular: volle Layoutbreite wie Startseite (nicht in schmaler .detail-content-Spalte) */
.detail-content > .booking-section {
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

.detail-section {
  margin-bottom: 5rem;
}

.detail-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.detail-section p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

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

.detail-highlight {
  color: var(--text-primary);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.detail-tag {
  padding: 0.5rem 1rem;
  background: rgba(200, 165, 93, 0.1);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
}

.detail-quote {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(200, 165, 93, 0.3);
}

.detail-quote p {
  margin-bottom: 1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.detail-grid-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
}

.detail-grid-item p {
  color: var(--text-primary);
  margin: 0;
}

.detail-cta-box {
  background: var(--bg-secondary);
  border: 1px solid rgba(200, 165, 93, 0.3);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.detail-cta-title {
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.detail-cta-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.detail-cta-text p {
  margin-bottom: 0.5rem;
}

.detail-cta-highlight {
  color: var(--text-primary);
}

.detail-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .detail-cta-buttons {
    flex-direction: row;
  }
}

.detail-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.detail-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.detail-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(200, 165, 93, 0.5);
  color: var(--gold);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.detail-btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.detail-info-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .detail-info-row {
    gap: 3rem;
  }
}

.detail-info-item p:first-child {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.detail-info-item p:last-child {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-info-separator {
  width: 1px;
  height: 2.5rem;
  background: var(--border-color);
  display: none;
}

@media (min-width: 768px) {
  .detail-info-separator {
    display: block;
  }
}

.retreat-date-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.retreat-date-card {
  background: rgba(20, 20, 22, 0.8);
  border: 1px solid rgba(200, 165, 93, 0.28);
  border-radius: 14px;
  padding: 1.15rem 1.1rem;
}

.retreat-date-title {
  color: var(--text-primary);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
}

.retreat-date-range {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.retreat-date-location {
  color: var(--text-secondary);
  margin-bottom: 0.95rem;
}

.retreat-date-card .detail-btn-secondary {
  display: inline-flex;
  text-decoration: none;
}

@media (min-width: 768px) {
  .retreat-date-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
}

/* ===== RAUKR page (wide editorial layout) ===== */
.nv-raukr-page {
  background: var(--bg-primary);
}

.detail-content.nv-raukr {
  max-width: min(1200px, 100%);
  padding: 3rem clamp(1rem, 3vw, 2rem) 4rem;
}

.detail-hero-bg .nv-raukr-hero-img {
  opacity: 0.42;
}

.nv-raukr-section {
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.nv-raukr-section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.15rem;
  font-weight: 500;
}

.nv-raukr-prose {
  font-size: clamp(0.94rem, 1.15vw, 1.04rem);
  line-height: 1.86;
  font-weight: 300;
  color: var(--text-secondary);
}

.nv-raukr-prose p {
  margin: 0 0 1.1rem;
}

.nv-raukr-prose p:last-child {
  margin-bottom: 0;
}

.nv-raukr-lead {
  font-size: clamp(1.05rem, 1.65vw, 1.18rem);
  line-height: 1.72;
  color: rgba(244, 241, 234, 0.94);
  margin-bottom: 1.25rem;
}

.nv-raukr-highlight {
  color: var(--text-primary);
}

.nv-raukr-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}

@media (min-width: 900px) {
  .nv-raukr-split {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .nv-raukr-split--reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .nv-raukr-split--reverse .nv-raukr-split-media {
    order: -1;
  }
}

.nv-raukr-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.nv-raukr-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.nv-raukr-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.nv-raukr-banner {
  margin: 0 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  background: var(--bg-secondary);
}

.nv-raukr-banner img {
  width: 100%;
  height: min(42vh, 440px);
  object-fit: cover;
  display: block;
}

.nv-raukr-2col-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem 2rem;
  margin-top: 1rem;
}

@media (min-width: 720px) {
  .nv-raukr-2col-list {
    grid-template-columns: 1fr 1fr;
  }
}

.nv-raukr-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nv-raukr-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1rem;
  margin-bottom: 0.25rem;
  border-left: 2px solid rgba(200, 165, 93, 0.35);
  line-height: 1.62;
  color: var(--text-secondary);
  font-weight: 300;
}

.nv-raukr-days {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 900px) {
  .nv-raukr-days {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nv-raukr-day {
  padding: 1.2rem 1.05rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 165, 93, 0.14);
  border-radius: 12px;
}

.nv-raukr-day-title {
  font-family: "Cinzel", serif;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.nv-raukr-day .nv-raukr-prose p {
  font-size: 0.92rem;
}

.nv-raukr-bridge {
  padding: 1.5rem 1.35rem;
  border-left: 2px solid rgba(200, 165, 93, 0.45);
  background: rgba(255, 255, 255, 0.02);
}

.nv-raukr-bridge a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 165, 93, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nv-raukr-bridge a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.nv-raukr-quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .nv-raukr-quote-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nv-raukr-quote-card {
  padding: 1.05rem 0.95rem;
  background: rgba(20, 20, 22, 0.72);
  border: 1px solid rgba(200, 165, 93, 0.14);
  border-radius: 12px;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.62;
  color: rgba(236, 230, 218, 0.92);
}

.nv-raukr-cta {
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.25rem) 1.5rem;
  border: 1px solid rgba(200, 165, 93, 0.18);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(200, 165, 93, 0.07) 0%, transparent 55%);
}

.nv-raukr-cta-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  color: var(--text-primary);
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

.nv-raukr-cta-line {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.nv-raukr-cta-em {
  color: var(--gold);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  letter-spacing: 0.04em;
}

/* ===== HYLR page (water / mist — mirrors RAUKR layout) ===== */
.nv-hylr-page {
  background: var(--bg-primary);
  --hylr-green: #3d5c4a;
  --hylr-green-soft: rgba(74, 108, 89, 0.45);
  --hylr-slate: rgba(90, 98, 104, 0.35);
  --hylr-mist: rgba(120, 140, 130, 0.12);
}

.detail-content.nv-hylr {
  max-width: min(1200px, 100%);
  padding: 3rem clamp(1rem, 3vw, 2rem) 4rem;
}

.detail-hero-bg .nv-hylr-hero-img {
  opacity: 0.38;
}

.nv-hylr-page .nv-hylr-hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(12, 18, 16, 0.55) 0%,
    rgba(15, 18, 17, 0.62) 45%,
    rgba(15, 15, 16, 0.88) 82%,
    var(--bg-primary) 100%
  );
}

.detail-hero--extended {
  min-height: min(88vh, 920px);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.detail-hero-body {
  margin-top: 1.75rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.detail-hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.75;
  color: rgba(244, 241, 234, 0.82);
  font-weight: 300;
  margin-bottom: 0.85rem;
}

.detail-hero-desc--accent {
  color: rgba(244, 241, 234, 0.94);
  margin-bottom: 1.65rem;
}

.detail-hero-cta {
  margin-top: 0.25rem;
}

.nv-hylr-page .nv-hylr-hero-line {
  background: rgba(74, 108, 89, 0.5);
}

.nv-hylr-page .nv-raukr-section-title {
  color: rgba(196, 180, 150, 0.95);
}

.nv-hylr-page .nv-raukr-list li {
  border-left-color: var(--hylr-green-soft);
}

.nv-hylr-page .nv-raukr-day,
.nv-hylr-page .nv-raukr-quote-card {
  border-color: rgba(74, 108, 89, 0.22);
  background: rgba(255, 255, 255, 0.018);
}

.nv-hylr-page .nv-raukr-day-title {
  color: rgba(196, 180, 150, 0.92);
}

.nv-hylr-page .nv-raukr-bridge {
  border-left-color: var(--hylr-green-soft);
}

.nv-hylr-page .nv-hylr-cta {
  border-color: rgba(74, 108, 89, 0.28);
  background: linear-gradient(165deg, var(--hylr-mist) 0%, transparent 55%);
}

.nv-hylr-page .nv-raukr-cta-em {
  color: rgba(196, 180, 150, 0.95);
}

.nv-hylr-page .nv-hylr-quote-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .nv-hylr-page .nv-hylr-quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nv-hylr-shift-grid {
  margin-top: 1.5rem;
}

.nv-hylr-shift-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(196, 180, 150, 0.88);
  margin-bottom: 0.65rem;
}

.nv-hylr-module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

@media (min-width: 540px) {
  .nv-hylr-module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .nv-hylr-module-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.nv-hylr-module-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(74, 108, 89, 0.2);
  border-radius: 14px;
  padding: 1.35rem 1.15rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.nv-hylr-module-card:hover {
  border-color: rgba(74, 108, 89, 0.42);
  transform: translateY(-3px);
}

.nv-hylr-module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--hylr-mist) 0%, transparent 60%);
  pointer-events: none;
}

.nv-hylr-module-title {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  line-height: 1.45;
  font-weight: 400;
}

.nv-hylr-waitlist {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(74, 108, 89, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.nv-hylr-waitlist .nv-raukr-prose {
  text-align: left;
}

@media (min-width: 768px) {
  .nv-hylr-waitlist .nv-raukr-prose {
    text-align: center;
  }
}

.nv-hylr-waitlist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.35rem;
  padding: 0.78rem 1.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196, 180, 150, 0.95);
  border: 1px solid rgba(74, 108, 89, 0.45);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nv-hylr-waitlist-btn:hover {
  border-color: rgba(74, 108, 89, 0.7);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* Nav path tags (RAUKR · Männer / HYLR · Frauen) */
.site-nav-path-tag {
  font-size: 0.58em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 400;
  margin-left: 0.35em;
}

/* ===== HJARNVEGR page (wide layout, shared with RAUKR tokens) ===== */
.nv-hjv-page {
  background: var(--bg-primary);
}

.detail-content.nv-hjv {
  max-width: min(1200px, 100%);
  padding: 3rem clamp(1rem, 3vw, 2rem) 4rem;
}

.detail-hero-bg .nv-hjv-hero-img {
  opacity: 0.42;
}

.nv-hjv-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

@media (min-width: 768px) {
  .nv-hjv-duo {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.nv-hjv-duo figure {
  margin: 0;
  overflow: hidden;
  background: var(--bg-secondary);
}

.nv-hjv-duo img {
  width: 100%;
  height: min(46vh, 420px);
  object-fit: cover;
  display: block;
}

.nv-hjv-waitlist {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(200, 165, 93, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.nv-hjv-waitlist .nv-raukr-prose {
  text-align: left;
}

@media (min-width: 768px) {
  .nv-hjv-waitlist .nv-raukr-prose {
    text-align: center;
  }
}

.nv-hjv-waitlist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.35rem;
  padding: 0.78rem 1.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 165, 93, 0.45);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nv-hjv-waitlist-btn:hover {
  background: rgba(200, 165, 93, 0.12);
  border-color: var(--gold);
  color: var(--text-primary);
}

/* ===== ELDRMANNR page (layout wie HJARNVEGR / RAUKR) ===== */
.nv-eldr-page {
  background: var(--bg-primary);
}

.detail-content.nv-eldr {
  max-width: min(1200px, 100%);
  padding: 3rem clamp(1rem, 3vw, 2rem) 4rem;
}

.detail-hero-bg .nv-eldr-hero-img {
  opacity: 0.42;
  object-fit: cover;
  object-position: center 42%;
}

.nv-eldr-intro-prelude {
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.nv-eldr-intro-feature {
  margin: 1.5rem 0 1.35rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(200, 165, 93, 0.38);
  border-radius: 12px;
  background: rgba(200, 165, 93, 0.07);
  box-shadow: 0 0 48px rgba(200, 165, 93, 0.09);
}

.nv-eldr-intro-name {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: 0.14em;
  margin: 0 0 0.35rem;
}

.nv-eldr-intro-kicker {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin: 0 0 0.9rem;
}

.nv-eldr-intro-feature .nv-eldr-intro-lead {
  margin: 0;
  color: rgba(244, 241, 234, 0.94);
  line-height: 1.7;
}

/* ===== VEGVÖRÐR – offen wie Startseite: weiche Übergänge, keine Karten-Boxen ===== */
.nv-vegvordr-page {
  background: var(--bg-primary);
}

.nv-vegv-hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(5rem, 12vw, 8rem) 1.25rem clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}

.nv-vegv-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nv-vegv-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.03);
  filter: saturate(1.02);
}

.nv-vegv-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    185deg,
    rgba(8, 8, 10, 0.12) 0%,
    rgba(15, 15, 16, 0.45) 42%,
    rgba(15, 15, 16, 0.78) 100%
  );
}

/* Weicher Übergang vom Hero in den Seitengrund */
.nv-vegv-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(42vh, 420px);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(15, 15, 16, 0.35) 45%,
    var(--bg-primary) 100%
  );
}

.nv-vegv-bc.nv-breadcrumbs {
  position: absolute;
  top: clamp(4.5rem, 10vw, 6rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 100%;
  max-width: min(1200px, 100%);
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.nv-vegv-hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 56rem;
}

.nv-vegv-hero-kicker {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.95;
}

.nv-vegv-hero-title {
  font-size: clamp(2.35rem, 8.5vw, 4.25rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.05;
  margin: 0 0 0.5rem;
  text-shadow: 0 4px 48px rgba(0, 0, 0, 0.65);
}

.nv-vegv-hero-sub {
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  color: rgba(232, 226, 218, 0.88);
  letter-spacing: 0.08em;
  margin: 0 0 1.5rem;
}

.nv-vegv-hero-line {
  width: min(12rem, 55vw);
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), rgba(200, 165, 93, 0.35), transparent);
  border-radius: 1px;
}

.nv-vegv-main {
  overflow-x: clip;
  position: relative;
}

.nv-vegv-inner {
  max-width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
}

.nv-vegv-inner:first-of-type {
  margin-top: -2rem;
}

/* Vollbreite Bildbänder, mit Text verwebt */
.nv-vegv-fullbleed {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: min(72vh, 760px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.nv-vegv-fullbleed--weg,
.nv-vegv-fullbleed--danach {
  min-height: min(58vh, 640px);
}

.nv-vegv-fullbleed-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.nv-vegv-fullbleed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
}

.nv-vegv-fullbleed--weg .nv-vegv-fullbleed-img {
  object-position: center 35%;
}

.nv-vegv-fullbleed--danach .nv-vegv-fullbleed-img {
  object-position: center 45%;
}

.nv-vegv-fullbleed-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    165deg,
    rgba(10, 10, 12, 0.35) 0%,
    rgba(15, 15, 16, 0.5) 38%,
    rgba(15, 15, 16, 0.88) 100%
  );
}

.nv-vegv-fullbleed--weg .nv-vegv-fullbleed-scrim,
.nv-vegv-fullbleed--danach .nv-vegv-fullbleed-scrim {
  background: linear-gradient(
    180deg,
    rgba(8, 8, 10, 0.25) 0%,
    rgba(15, 15, 16, 0.55) 45%,
    rgba(15, 15, 16, 0.92) 100%
  );
}

.nv-vegv-fullbleed-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(40rem, 92vw);
  padding: clamp(2.25rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem) clamp(2.5rem, 7vw, 4.5rem);
  text-align: center;
}

.nv-vegv-fullbleed-content--head {
  max-width: min(48rem, 94vw);
  text-align: left;
}

@media (min-width: 900px) {
  .nv-vegv-fullbleed-content--head {
    align-self: flex-end;
    margin-left: max(0px, calc((100vw - min(1180px, 100%)) / 2));
    margin-right: auto;
    padding-left: clamp(1rem, 3vw, 2rem);
  }
}

.nv-vegv-fullbleed-text {
  font-size: clamp(0.95rem, 1.45vw, 1.05rem);
  line-height: 1.82;
  color: rgba(232, 226, 218, 0.94);
  margin: 0 0 1.25rem;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.45);
}

.nv-vegv-pull--bleed {
  margin: 0 !important;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}

.nv-vegv-fullbleed-lead {
  font-size: clamp(0.98rem, 1.4vw, 1.06rem);
  line-height: 1.78;
  color: rgba(232, 226, 218, 0.92);
  margin: 0;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
}

.nv-vegv-section-title--onimg {
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
}

/* Fließtext nach Vollbild: leicht nach oben gezogen = verwoben */
.nv-vegv-sit {
  margin-top: -2.25rem;
  padding-top: 0;
  padding-bottom: clamp(2rem, 5vw, 3rem);
  position: relative;
  z-index: 2;
}

.nv-vegv-sit .nv-vegv-prose-wide {
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1rem, 2vw, 1.5rem) 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 16, 0.97) 0%,
    var(--bg-primary) 28%
  );
  border-radius: 0;
}

@media (max-width: 767px) {
  .nv-vegv-fullbleed {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .nv-vegv-fullbleed-bg {
    position: relative;
    inset: auto;
    height: min(52vh, 400px);
    width: 100%;
    flex-shrink: 0;
  }

  .nv-vegv-fullbleed-img {
    height: 100%;
    min-height: min(52vh, 400px);
    object-position: center center;
  }

  .nv-vegv-fullbleed-scrim {
    background: linear-gradient(
      180deg,
      rgba(15, 15, 16, 0.15) 0%,
      rgba(15, 15, 16, 0.82) 100%
    );
  }

  .nv-vegv-fullbleed-content {
    max-width: 100%;
    text-align: left;
    padding: clamp(1.5rem, 4vw, 2rem) max(1.1rem, env(safe-area-inset-right, 0px)) clamp(1.75rem, 5vw, 2.25rem) max(1.1rem, env(safe-area-inset-left, 0px));
    padding-bottom: max(clamp(1.75rem, 5vw, 2.25rem), env(safe-area-inset-bottom, 0px));
    background: var(--bg-primary);
    margin-top: -1.25rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
  }

  .nv-vegv-fullbleed-content--head {
    margin-left: 0;
    text-align: left;
  }

  .nv-vegv-sit {
    margin-top: 0;
  }

  .nv-vegv-sit .nv-vegv-prose-wide {
    padding-top: clamp(1.25rem, 3vw, 1.75rem);
    background: var(--bg-primary);
  }

  .nv-vegv-inner:first-of-type {
    margin-top: -1rem;
  }
}

.nv-vegv-section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  line-height: 1.25;
  margin: 0 0 1.25rem;
}

.nv-vegv-intro {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.nv-vegv-lead {
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}

.nv-vegv-prose-wide {
  max-width: 48rem;
}

.nv-vegv-prose-wide p {
  font-size: clamp(0.98rem, 1.35vw, 1.06rem);
  line-height: 1.82;
  color: rgba(232, 226, 218, 0.88);
  margin: 0 0 1.15rem;
}

.nv-vegv-pull {
  font-family: "Cinzel", serif;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  margin: 1.75rem 0 0 !important;
}

.nv-vegv-modules {
  margin-bottom: clamp(3.5rem, 9vw, 5.5rem);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(200, 165, 93, 0.03) 50%,
    transparent 100%
  );
}

.nv-vegv-modules-head {
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  text-align: center;
  margin: 0 0 0.65rem;
  letter-spacing: 0.06em;
}

.nv-vegv-modules-deck {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 36rem;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}

.nv-vegv-module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .nv-vegv-module-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
  }

  .nv-vegv-module-card {
    border-bottom: none;
    border-right: 1px solid rgba(200, 165, 93, 0.06);
    padding-left: 0.25rem;
    padding-right: clamp(0.75rem, 2vw, 1.25rem);
  }

  .nv-vegv-module-card:nth-child(2n) {
    border-right: none;
  }

  .nv-vegv-module-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(200, 165, 93, 0.07);
    padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  }
}

.nv-vegv-module-card {
  position: relative;
  padding: clamp(1.15rem, 2.5vw, 1.5rem) 0;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(200, 165, 93, 0.08);
  transition: opacity 0.2s ease;
}

.nv-vegv-module-card:hover {
  opacity: 0.98;
}

.nv-vegv-module-card:last-child {
  border-bottom: none;
}

.nv-vegv-module-num {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 1.75rem;
  color: rgba(200, 165, 93, 0.35);
  line-height: 1;
  margin-bottom: 0.65rem;
}

.nv-vegv-module-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-primary);
  letter-spacing: 0.05em;
  margin: 0 0 0.65rem;
}

.nv-vegv-module-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.72;
  color: rgba(232, 226, 218, 0.86);
}

.nv-vegv-quote-block {
  margin: clamp(2.5rem, 7vw, 4rem) auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  text-align: center;
  border: none;
  background: radial-gradient(
    ellipse 70% 80% at 50% 40%,
    rgba(200, 165, 93, 0.06) 0%,
    transparent 70%
  );
}

.nv-vegv-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.nv-vegv-quote p {
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: rgba(232, 226, 218, 0.95);
  line-height: 1.55;
  letter-spacing: 0.03em;
  margin: 0;
}

.nv-vegv-outro {
  max-width: 44rem;
  margin: 0 auto clamp(3rem, 8vw, 5rem);
  text-align: center;
}

.nv-vegv-outro-lead,
.nv-vegv-outro-closing {
  font-size: clamp(1rem, 1.45vw, 1.08rem);
  line-height: 1.85;
  color: rgba(232, 226, 218, 0.9);
  margin: 0 0 1.25rem;
}

.nv-vegv-outro-closing {
  font-family: "Cinzel", serif;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.nv-vegv-cta-band {
  margin: clamp(2rem, 6vw, 3rem) auto clamp(3rem, 8vw, 4.5rem);
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.25rem, 3vw, 2rem);
  border: none;
  border-radius: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(200, 165, 93, 0.05) 40%,
    transparent 100%
  );
  box-shadow: none;
}

.nv-vegv-cta-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.nv-vegv-cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: 0.06em;
  margin: 0 0 0.85rem;
}

.nv-vegv-cta-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(232, 226, 218, 0.88);
  margin: 0 0 1.75rem;
}

.nv-vegv-capacity {
  margin: 1.5rem 0 1.75rem;
}

.nv-vegv-capacity-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
}

.nv-vegv-capacity-meter {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.nv-vegv-slot {
  flex: 1;
  max-width: 4.5rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(200, 165, 93, 0.22);
  box-shadow: inset 0 0 0 1px rgba(200, 165, 93, 0.35);
}

.nv-vegv-slot--free {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 20px rgba(200, 165, 93, 0.35);
}

.nv-vegv-capacity-count {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin: 0;
}

.nv-vegv-capacity-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

.nv-vegv-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 1.75rem;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

/* Hauptaktion: Warteliste */
.nv-vegv-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 1rem 1.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--gold) 0%, #b89452 100%);
  border: 1px solid rgba(200, 165, 93, 0.45);
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.nv-vegv-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(200, 165, 93, 0.22);
  color: var(--bg-primary);
  filter: brightness(1.03);
}

.nv-vegv-btn-primary svg {
  flex-shrink: 0;
  opacity: 0.9;
}

/* Sekundär: nur Beratung, dezent unter dem Hauptbutton */
.nv-vegv-consult {
  display: inline-block;
  margin-top: 1.35rem;
  padding: 0.35rem 0.25rem;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(232, 226, 218, 0.55);
  border-bottom: 1px solid rgba(200, 165, 93, 0.22);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nv-vegv-consult:hover {
  color: var(--gold);
  border-bottom-color: rgba(200, 165, 93, 0.45);
}

.nv-vegv-mail-note {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 1.65rem 0 0;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.nv-vegv-booking {
  border-top: 1px solid rgba(200, 165, 93, 0.06);
}

@media (max-width: 767px) {
  .nv-vegv-hero {
    min-height: 85vh;
  }
}

.detail-footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.detail-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .detail-footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(200, 165, 93, 0.3);
  color: var(--text-primary);
}

/* ===== FOCUS ===== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===== MOBILE & RESPONSIVE ===== */
@media (max-width: 767px) {
  .section-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .manifesto-inner {
    padding: 2.75rem 1rem 3.25rem;
  }

  body.nv-home .manifesto-inner {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    padding-bottom: max(3.25rem, env(safe-area-inset-bottom, 0px));
  }

  .concept-section {
    padding: 3rem max(0.75rem, env(safe-area-inset-right, 0px)) max(3rem, env(safe-area-inset-bottom, 0px)) max(0.75rem, env(safe-area-inset-left, 0px));
  }
  .team-section:not(.team-section--open),
  .retreats-section,
  .booking-section {
    padding: 3rem 1rem;
    min-height: var(--nv-vh);
  }
  body.nv-home .team-section:not(.team-section--open),
  body.nv-home .retreats-section,
  body.nv-home .booking-section {
    padding: max(3rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px)) max(3rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  }

  body.nv-home .team-section.team-section--open {
    padding: 0;
  }

  .booking-grid {
    gap: 2rem;
  }
  .footer {
    padding: 2rem 1rem;
  }
  .footer-content {
    gap: 1.25rem;
  }
  .footer-links {
    gap: 1rem;
  }
  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
  }
  .mobile-menu-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
  }
  .scroll-hint {
    bottom: 2rem;
  }
  .closing-content {
    padding: 3rem 1rem;
  }

  .closing-section--open .closing-open-inner {
    padding-top: 2.75rem;
    padding-bottom: 3rem;
  }

  .closing-headline {
    font-size: clamp(1.45rem, 6.5vw, 2.25rem);
  }

  .closing-cta {
    padding: 0.875rem 1.35rem;
    font-size: 0.68rem;
    width: 100%;
    max-width: 22rem;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  .hero-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }
  .manifesto-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .concept-title {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }
  .section-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    margin-bottom: 2rem;
  }
  .retreats-section:not(.retreats-section--open) .retreat-card {
    padding: 1.5rem;
  }
}

/* ===== DANKSEITE (FormSubmit) ===== */
.danke-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-primary);
}

.danke-main {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  min-height: calc(100vh - 8rem);
  overflow: hidden;
}

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

.danke-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.danke-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 16, 0.92) 0%,
    rgba(15, 15, 16, 0.85) 40%,
    rgba(15, 15, 16, 0.95) 100%
  );
}

.danke-card {
  position: relative;
  z-index: 2;
  max-width: 28rem;
  width: 100%;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(20, 20, 22, 0.75);
  border: 1px solid rgba(200, 165, 93, 0.35);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.danke-logo {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  opacity: 0.95;
}

.danke-kicker {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.danke-title {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.danke-lead {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.danke-lead strong {
  color: var(--text-primary);
  font-weight: 500;
}

.danke-note {
  font-size: 0.8125rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.danke-mail {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 165, 93, 0.4);
  transition: color 0.2s, border-color 0.2s;
}

.danke-mail:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.danke-actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: stretch;
}

@media (min-width: 480px) {
  .danke-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.danke-footer {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* ===== BLOG ===== */
.blog-page {
  min-height: 100vh;
}

.blog-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 7rem clamp(1rem, 4vw, 2rem) 4rem;
}

.blog-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.blog-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.blog-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.blog-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.blog-root {
  max-width: min(900px, 100%);
  margin: 0 auto;
}

.blog-list {
  display: grid;
  gap: 1rem;
}

.blog-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
}

.blog-meta {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.blog-card-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.blog-card-link, .blog-back {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-article {
  background: rgba(12, 14, 18, 0.55);
  border: 1px solid rgba(200, 165, 93, 0.12);
  border-radius: 18px;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.blog-article-heading {
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.28;
  margin: 0 0 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200, 165, 93, 0.18);
}

.blog-markdown {
  color: rgba(232, 228, 218, 0.88);
  line-height: 1.88;
  font-size: 1.06rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.blog-markdown h1 {
  color: var(--text-primary);
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(200, 165, 93, 0.15);
}

.blog-markdown h2 {
  color: var(--text-primary);
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-markdown h3 {
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.blog-markdown p {
  margin-bottom: 1.05rem;
}

.blog-markdown ul, .blog-markdown ol {
  margin: 0 0 1.1rem 1.35rem;
  padding: 0;
}

.blog-markdown li {
  margin-bottom: 0.45rem;
}

.blog-markdown li::marker {
  color: var(--gold);
}

.blog-markdown hr {
  border: none;
  border-top: 1px solid rgba(200, 165, 93, 0.12);
  margin: 2rem 0;
}

.blog-markdown blockquote {
  margin: 1.25rem 0 1.25rem 0;
  padding: 0.85rem 1.1rem 0.85rem 1.25rem;
  border-left: 3px solid rgba(200, 165, 93, 0.45);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 10px 10px 0;
  color: rgba(232, 228, 218, 0.92);
}

.blog-markdown blockquote p:last-child {
  margin-bottom: 0;
}

.blog-markdown strong {
  color: rgba(245, 240, 230, 0.95);
  font-weight: 600;
}

.blog-article .blog-meta {
  margin-bottom: 1.25rem;
}

.blog-article-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 165, 93, 0.18);
  text-align: center;
}

.blog-article-cta-text {
  color: var(--text-primary);
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
}

.blog-article-cta-sub {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.blog-article-cta-mail {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(200, 165, 93, 0.45);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-article-cta-mail:hover {
  background: rgba(200, 165, 93, 0.12);
  border-color: rgba(200, 165, 93, 0.65);
  color: var(--text-primary);
}

.blog-article .blog-back {
  display: inline-block;
  margin-top: 2rem;
}

.blog-empty {
  text-align: center;
  color: var(--text-secondary);
}

.blog-header--article {
  margin-bottom: 1rem;
}

.blog-header--article .blog-kicker {
  margin-bottom: 0;
}

/* Blog listing – offene Kacheln wie Team (Nico / Valentin) */
.nv-blog-page {
  background: linear-gradient(180deg, #101114 0%, #14151a 45%, #101114 100%);
}

.nv-blog-main.blog-main {
  max-width: min(1200px, 100%);
  padding: 6.5rem 1.25rem 4rem;
}

.nv-blog-page-header.blog-header {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.nv-blog-root.blog-root {
  max-width: 100%;
  width: 100%;
}

.nv-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  align-items: start;
}

@media (min-width: 768px) {
  .nv-blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.75rem, 3vw, 2.75rem);
  }
}

.nv-blog-tile {
  min-width: 0;
}

.nv-blog-tile-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.nv-blog-tile-link:focus-visible {
  outline: none;
}

.nv-blog-tile-link:focus-visible .nv-blog-tile-visual {
  box-shadow: 0 0 0 2px var(--gold);
}

.nv-blog-tile-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: min(52vh, 22rem);
  overflow: hidden;
  background: var(--bg-secondary);
}

.nv-blog-tile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transition: transform 0.5s ease;
}

.nv-blog-tile-link:hover .nv-blog-tile-photo {
  transform: scale(1.035);
}

.nv-blog-tile-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg-primary) 0%,
    rgba(15, 15, 16, 0.5) 38%,
    transparent 62%
  );
  pointer-events: none;
}

.nv-blog-tile-copy {
  padding-top: 1.35rem;
  max-width: 38rem;
}

.nv-blog-tile-title {
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  letter-spacing: 0.06em;
  line-height: 1.28;
  margin: 0 0 0.65rem;
  font-weight: 500;
}

.nv-blog-tile-excerpt {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.68;
  margin: 0 0 1.05rem;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nv-blog-tile-more {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(200, 165, 93, 0.38);
  padding-bottom: 0.12rem;
  display: inline-block;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nv-blog-tile-link:hover .nv-blog-tile-more {
  color: var(--text-primary);
  border-color: var(--gold);
}

@media (max-width: 767px) {
  .nv-blog-tile-copy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .nv-blog-main.blog-main {
    padding-top: 5.75rem;
  }
}

/* Blog-Artikel: volle Breite, heller, einladender */
.blog-main.nv-blog-article-shell {
  max-width: min(1200px, 100%);
  padding: 6.5rem 1.25rem 4rem;
}

.nv-blog-page .blog-root.nv-blog-article-root {
  max-width: 100%;
}

.nv-blog-post-cover {
  margin: 0 0 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  max-height: min(46vh, 26rem);
  background: var(--bg-secondary);
}

.nv-blog-post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

@media (max-width: 767px) {
  .blog-main.nv-blog-article-shell {
    padding-top: 5.75rem;
  }

  .nv-blog-post-cover {
    aspect-ratio: 16 / 10;
    max-height: min(40vh, 20rem);
  }
}

.nv-blog-page .blog-article.nv-blog-post {
  background: linear-gradient(165deg, rgba(36, 37, 42, 0.98) 0%, rgba(28, 29, 34, 0.99) 100%);
  border: 1px solid rgba(200, 165, 93, 0.16);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  padding: clamp(1.35rem, 3.5vw, 2.25rem) clamp(1.1rem, 3vw, 2rem);
}

.nv-blog-page .blog-article-heading {
  border-bottom-color: rgba(200, 165, 93, 0.22);
}

.nv-blog-page .blog-markdown {
  color: rgba(238, 234, 226, 0.95);
  font-size: 1.045rem;
  line-height: 1.82;
}

.nv-blog-page .blog-markdown h2 {
  color: #f2efe8;
}

.nv-blog-page .blog-markdown blockquote {
  background: rgba(200, 165, 93, 0.09);
  border-left-color: rgba(200, 165, 93, 0.5);
  color: rgba(242, 238, 230, 0.96);
}

.nv-blog-page .blog-markdown strong {
  color: #faf7f0;
}

.nv-blog-page .blog-back--top {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.nv-blog-page .blog-article-cta {
  border-top-color: rgba(200, 165, 93, 0.22);
}

.nv-blog-page .blog-article-cta-text {
  color: rgba(245, 242, 236, 0.96);
}

.detail-nav a.detail-nav-logo {
  justify-content: center;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ===== Cookie-Einwilligung (GA4) ===== */
.nordvaka-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  pointer-events: none;
}

.nordvaka-cookie-inner {
  pointer-events: auto;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.15rem 1.35rem;
  background: rgba(20, 20, 22, 0.96);
  border: 1px solid rgba(200, 165, 93, 0.28);
  border-radius: 14px;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nordvaka-cookie-text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.nordvaka-cookie-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nordvaka-cookie-link:hover {
  color: var(--gold-light);
}

.nordvaka-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nordvaka-cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nordvaka-cookie-btn--primary {
  background: rgba(200, 165, 93, 0.2);
  border-color: rgba(200, 165, 93, 0.55);
  color: var(--gold-light);
}

.nordvaka-cookie-btn--primary:hover {
  background: rgba(200, 165, 93, 0.32);
  color: var(--text-primary);
}

.nordvaka-cookie-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
}

.nordvaka-cookie-btn--ghost:hover {
  border-color: rgba(200, 165, 93, 0.35);
  color: var(--text-primary);
}

@media (max-width: 640px) {
  .nordvaka-cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .nordvaka-cookie-actions {
    justify-content: stretch;
  }
  .nordvaka-cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ===== VALENTIN PAGE ===== */
.coach-page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem clamp(1rem, 4vw, 2rem) 4rem;
}

.coach-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.coach-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(200, 165, 93, 0.18);
  background: #0e1014;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.coach-image-wrap img {
  width: 100%;
  height: min(72vh, 820px);
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.coach-content {
  background: rgba(12, 14, 18, 0.55);
  border: 1px solid rgba(200, 165, 93, 0.12);
  border-radius: 18px;
  padding: clamp(1.3rem, 3.5vw, 2.4rem);
}

.coach-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.coach-title {
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1.22;
  margin-bottom: 1.2rem;
}

.coach-text {
  color: rgba(232, 228, 218, 0.9);
  font-size: 1.04rem;
  line-height: 1.9;
  max-width: 90ch;
}

.coach-lead {
  font-size: 1.08rem;
  color: rgba(245, 240, 230, 0.95);
  margin-bottom: 1.35rem;
}

.coach-block {
  padding-top: 1.1rem;
  margin-top: 1.1rem;
  border-top: 1px solid rgba(200, 165, 93, 0.12);
}

.coach-subtitle {
  font-size: clamp(1.02rem, 2.2vw, 1.3rem);
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
}

.coach-text p {
  margin: 0 0 1rem;
}

@media (min-width: 1024px) {
  .coach-hero {
    grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
    gap: 1.6rem;
    align-items: stretch;
  }
  .coach-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .coach-page-main {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .coach-image-wrap img {
    height: min(58vh, 560px);
    object-position: center 14%;
  }
}

@media (max-width: 640px) {
  .coach-page-main {
    padding: 5.4rem 0.8rem 2.2rem;
  }
  .coach-hero {
    gap: 0.9rem;
  }
  .coach-image-wrap {
    border-radius: 14px;
  }
  .coach-image-wrap img {
    height: min(52vh, 430px);
    object-position: center 12%;
  }
  .coach-content {
    border-radius: 14px;
    padding: 1rem 0.95rem 1.15rem;
  }
  .coach-kicker {
    font-size: 0.64rem;
    letter-spacing: 0.15em;
  }
  .coach-title {
    margin-bottom: 0.85rem;
  }
  .coach-text {
    font-size: 0.98rem;
    line-height: 1.72;
  }
  .coach-lead {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .coach-block {
    padding-top: 0.9rem;
    margin-top: 0.9rem;
  }
}

/* ===== VALENTIN PROFILE (heller, luftig, Nordvaka) ===== */
.valentin-profile-page {
  --vp-surface: rgba(22, 23, 27, 0.72);
  --vp-surface-elevated: rgba(28, 29, 34, 0.85);
  --vp-border: rgba(200, 165, 93, 0.14);
  --vp-max: min(1120px, 100%);
  --vp-max-text: min(680px, 100%);
  background-color: #121214;
}

.valentin-profile {
  padding-top: 5.5rem;
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.vp-hero {
  position: relative;
  min-height: min(88vh, 900px);
  display: flex;
  align-items: flex-end;
  margin: 0 clamp(0.75rem, 3vw, 1.5rem);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--vp-border);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
}

.vp-hero__media {
  position: absolute;
  inset: 0;
}

.vp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.vp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 11, 14, 0.25) 0%,
    rgba(10, 11, 14, 0.55) 42%,
    rgba(10, 11, 14, 0.88) 100%
  );
}

.vp-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--vp-max);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}

.vp-hero__kicker {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.vp-hero__title {
  font-size: clamp(2.4rem, 6.5vw, 3.75rem);
  letter-spacing: 0.06em;
  line-height: 1.08;
  margin-bottom: 0.5rem;
}

.vp-hero__tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  letter-spacing: 0.12em;
  color: rgba(232, 228, 218, 0.88);
  margin-bottom: 1.25rem;
}

.vp-hero__statement {
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  line-height: 1.55;
  color: rgba(245, 240, 230, 0.94);
  max-width: 36ch;
  margin-bottom: 1.75rem;
}

.vp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 0.95rem 1.75rem;
  border-radius: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s ease;
  border: none;
  cursor: pointer;
}

.vp-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.vp-btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(200, 165, 93, 0.45);
}

.vp-btn--ghost:hover {
  background: rgba(200, 165, 93, 0.1);
  color: var(--text-primary);
}

.vp-section {
  padding: clamp(3.5rem, 9vw, 6.5rem) clamp(1rem, 4vw, 2rem);
}

.vp-section--air {
  padding-top: clamp(4rem, 10vw, 7rem);
  padding-bottom: clamp(4rem, 10vw, 7rem);
}

.vp-section--band {
  background: var(--vp-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vp-section__inner {
  max-width: var(--vp-max);
  margin: 0 auto;
}

.vp-section__inner--narrow {
  max-width: var(--vp-max-text);
}

.vp-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.vp-h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  letter-spacing: 0.07em;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.vp-h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: 0.08em;
  margin: 0 0 0.85rem;
  color: rgba(245, 240, 230, 0.96);
}

.vp-lead {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  line-height: 1.75;
  color: rgba(232, 228, 218, 0.92);
}

.vp-prose {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(210, 205, 196, 0.95);
}

.vp-prose p {
  margin: 0 0 1.15rem;
}

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

.vp-hook {
  text-align: center;
  max-width: min(760px, 94vw);
  margin: 0 auto;
}

.vp-hook__lines {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.38;
  color: rgba(200, 195, 186, 0.95);
}

.vp-hook__lines p {
  margin: 0 0 0.1rem;
}

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

.vp-hook__lines + .vp-hook__emph {
  margin-top: 0.85rem;
}

.vp-hook__emph + .vp-hook__lines {
  margin-top: 0.65rem;
}

.vp-hook__emph {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  letter-spacing: 0.06em;
  color: rgba(245, 240, 230, 0.96);
}

.vp-social__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(200, 165, 93, 0.28);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.vp-social__ig:hover {
  color: var(--text-primary);
  border-color: rgba(245, 240, 230, 0.3);
}

.vp-ig-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
  stroke: currentColor;
}

.vp-split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .vp-split--story {
    grid-template-columns: 1fr 1fr;
  }
}

.vp-card {
  background: var(--vp-surface-elevated);
  border: 1px solid var(--vp-border);
  border-radius: 16px;
  padding: clamp(1.35rem, 3vw, 1.85rem);
}

.vp-story-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.vp-train-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .vp-train-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .vp-train-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vp-train-card {
  padding: 1.2rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--vp-border);
  background: rgba(18, 19, 23, 0.65);
}

.vp-train-card h3 {
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.vp-train-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.vp-pull {
  margin-top: 2rem;
  padding: 1.5rem 1.25rem;
  border-left: 3px solid rgba(200, 165, 93, 0.45);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 12px 12px 0;
}

.vp-pull p {
  margin: 0 0 0.75rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.vp-pull__q {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: rgba(245, 240, 230, 0.94);
}

.vp-statements {
  display: grid;
  gap: 0.85rem;
  max-width: 560px;
}

@media (min-width: 720px) {
  .vp-statements {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    max-width: none;
  }
}

.vp-statement {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  letter-spacing: 0.06em;
  padding: 0.85rem 1rem;
  border: 1px solid var(--vp-border);
  border-radius: 12px;
  background: rgba(16, 17, 20, 0.65);
  color: rgba(240, 236, 228, 0.95);
}

.vp-cta-block {
  text-align: center;
  max-width: min(640px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 20px;
  border: 1px solid rgba(200, 165, 93, 0.22);
  background: linear-gradient(165deg, rgba(32, 30, 26, 0.5) 0%, rgba(18, 18, 22, 0.9) 100%);
}

.vp-cta-block .vp-prose {
  text-align: left;
}

.vp-mail {
  display: inline-block;
  margin: 1rem 0 1.5rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  word-break: break-word;
}

.vp-mail:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.vp-social {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) 1rem;
}

.vp-social a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(200, 165, 93, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.vp-social a:hover {
  color: var(--text-primary);
  border-color: rgba(245, 240, 230, 0.35);
}

.vp-closing {
  text-align: center;
  max-width: min(560px, 100%);
  margin: 0 auto;
}

.vp-closing .vp-lead {
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .valentin-profile {
    padding-top: max(5rem, calc(4.5rem + env(safe-area-inset-top, 0px)));
    padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }

  .vp-hero {
    min-height: min(72vh, 640px);
    margin-left: max(0.5rem, env(safe-area-inset-left, 0px));
    margin-right: max(0.5rem, env(safe-area-inset-right, 0px));
    border-radius: 16px;
  }

  .vp-hero__inner {
    padding: 1.5rem 1.1rem 1.75rem;
    padding-bottom: max(1.75rem, env(safe-area-inset-bottom, 0px));
  }

  .vp-hero__statement {
    max-width: none;
  }

  .vp-section {
    padding: clamp(2.5rem, 8vw, 4rem) max(1rem, env(safe-area-inset-right, 0px)) clamp(2.5rem, 8vw, 4rem) max(1rem, env(safe-area-inset-left, 0px));
  }

  .vp-section--air {
    padding-top: clamp(2.75rem, 9vw, 4.5rem);
    padding-bottom: clamp(2.75rem, 9vw, 4.5rem);
  }

  .vp-prose {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .vp-card {
    padding: 1.15rem 1.05rem;
    border-radius: 14px;
  }

  .vp-train-card {
    padding: 1rem 0.95rem;
  }

  .vp-pull {
    padding: 1.25rem 1rem;
  }

  .vp-cta-block {
    padding: 1.5rem 1.1rem;
    border-radius: 16px;
  }

  .vp-social {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .vp-btn,
  .vp-btn--ghost {
    min-height: 48px;
    padding: 0.95rem 1.5rem;
    box-sizing: border-box;
  }
}

@media (max-width: 420px) {
  .vp-btn,
  .vp-btn--ghost {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .vp-hook {
    max-width: 100%;
    padding: 0 0.15rem;
  }
}

/* ===== NICO PROFILE (weich, spirituell – neben Valentin) ===== */
.nico-profile-page {
  --np-mist: rgba(26, 24, 30, 0.65);
  --np-mist-deep: rgba(20, 18, 24, 0.88);
  --np-border: rgba(198, 175, 150, 0.2);
  --np-glow: rgba(212, 185, 155, 0.45);
  --np-text: rgba(228, 220, 208, 0.94);
  --np-text-soft: rgba(195, 186, 175, 0.92);
  --np-max: min(920px, 100%);
  --np-narrow: min(38rem, 100%);
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(45, 36, 42, 0.35) 0%, transparent 55%), #121014;
}

.nico-profile {
  padding-top: 5.25rem;
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.np-hero {
  position: relative;
  min-height: min(82vh, 820px);
  display: flex;
  align-items: flex-end;
  margin: 0 clamp(0.65rem, 2.5vw, 1.25rem);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--np-border);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.4);
}

.np-hero__media {
  position: absolute;
  inset: 0;
}

.np-hero--profile .np-hero__media {
  background: #121014;
}

.np-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

/* Profilfoto nico3: ausgewogene Bildausschnitt / leichter Zoom fürs Hero */
.np-hero--profile .np-hero__media img {
  object-position: center 26%;
  transform: scale(1.04);
  transform-origin: center 24%;
}

@media (max-width: 900px) {
  .np-hero--profile .np-hero__media img {
    object-position: center 24%;
    transform: scale(1.06);
    transform-origin: center 22%;
  }
}

@media (max-width: 640px) {
  .np-hero--profile .np-hero__media img {
    object-position: center 22%;
    transform: scale(1.08);
    transform-origin: center 20%;
  }
}

.np-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    185deg,
    rgba(18, 14, 20, 0.2) 0%,
    rgba(22, 18, 26, 0.55) 38%,
    rgba(14, 12, 18, 0.9) 100%
  );
}

.np-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--np-max);
  margin: 0 auto;
  padding: clamp(2.2rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}

.np-hero__kicker {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(212, 190, 165, 0.88);
  font-weight: 400;
  margin-bottom: 0.9rem;
}

.np-hero__title {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 0.65rem;
  color: rgba(248, 242, 232, 0.98);
}

.np-hero__role {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.1em;
  color: rgba(220, 205, 188, 0.9);
  margin-bottom: 0.85rem;
  font-weight: 400;
}

.np-hero__tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(232, 222, 208, 0.92);
  max-width: 28ch;
  line-height: 1.5;
}

.np-section {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1rem, 4vw, 2rem);
}

.np-section--mist {
  background: var(--np-mist);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.np-section--deep {
  background: linear-gradient(180deg, transparent 0%, rgba(30, 26, 34, 0.4) 50%, transparent 100%);
}

.np-inner {
  max-width: var(--np-max);
  margin: 0 auto;
}

.np-inner--narrow {
  max-width: var(--np-narrow);
  margin: 0 auto;
}

.np-inner--wide {
  max-width: min(780px, 100%);
  margin: 0 auto;
}

.np-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 175, 150, 0.85);
  margin-bottom: 1rem;
  font-weight: 400;
}

.np-h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  color: rgba(246, 238, 226, 0.96);
}

.np-prose {
  font-size: 1.02rem;
  line-height: 1.92;
  font-weight: 300;
  color: var(--np-text);
}

.np-prose p {
  margin: 0 0 1.1rem;
}

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

.np-prose strong {
  font-weight: 500;
  color: rgba(238, 230, 218, 0.96);
}

.np-lead-soft {
  font-size: clamp(1.02rem, 2vw, 1.12rem);
  line-height: 1.85;
  font-weight: 300;
  color: var(--np-text-soft);
}

.np-stanza {
  margin: 0.35rem 0;
  font-weight: 300;
  color: rgba(210, 200, 188, 0.95);
}

.np-stanza--emph {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: clamp(1.02rem, 2.1vw, 1.15rem);
  letter-spacing: 0.04em;
  color: rgba(236, 226, 212, 0.95);
  margin-top: 1.25rem;
}

.np-list-modalities {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  border-left: 1px solid rgba(200, 170, 145, 0.28);
}

.np-list-modalities li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--np-text-soft);
}

.np-list-modalities li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(200, 175, 150, 0.45);
}

.np-verse-block {
  max-width: var(--np-narrow);
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) 1rem;
}

.np-verse-block .np-line {
  display: block;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.75;
  color: rgba(232, 222, 208, 0.94);
  margin: 0.4rem 0;
}

.np-verse-block .np-line--small {
  font-size: 0.98rem;
  font-style: normal;
  color: var(--np-text-soft);
}

.np-center-bridge {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1rem;
}

.np-center-bridge .np-h2 {
  margin-bottom: 0.75rem;
}

.np-center-bridge p {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  letter-spacing: 0.08em;
  font-weight: 400;
  color: rgba(228, 218, 200, 0.92);
  margin: 0.5rem 0;
  font-style: italic;
}

.np-for-whom {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.np-for-whom li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--np-text);
}

.np-for-whom li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.65rem;
  color: rgba(200, 175, 150, 0.55);
}

.np-symptom-grid {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  border: 1px solid var(--np-border);
  background: rgba(18, 16, 22, 0.45);
  list-style: none;
}

.np-symptom-grid li {
  list-style: none;
  font-weight: 300;
  font-size: 0.96rem;
  color: var(--np-text-soft);
  padding-left: 0.5rem;
  border-left: 2px solid rgba(180, 155, 130, 0.25);
}

.np-ornament {
  width: 48px;
  height: 1px;
  margin: 2rem auto;
  background: linear-gradient(90deg, transparent, var(--np-glow), transparent);
  opacity: 0.7;
}

.np-cta-panel {
  text-align: center;
  max-width: min(640px, 100%);
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.25rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 22px;
  border: 1px solid var(--np-border);
  background: linear-gradient(160deg, rgba(36, 32, 40, 0.5) 0%, rgba(16, 14, 20, 0.85) 100%);
}

.np-cta-panel .np-prose {
  text-align: left;
  margin-bottom: 1.5rem;
}

.np-cta-panel .np-prose p {
  margin-bottom: 1rem;
}

.np-cta-panel .np-prose p:last-child {
  margin-bottom: 0;
}

.np-closing {
  text-align: center;
  max-width: min(560px, 100%);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1rem 1rem;
}

.np-closing .np-lead-soft {
  margin-bottom: 1.5rem;
}

.np-btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.85rem 1.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  color: rgba(210, 190, 168, 0.95);
  background: transparent;
  border: 1px solid rgba(200, 175, 150, 0.4);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.np-btn--ghost:hover {
  background: rgba(200, 175, 150, 0.08);
  color: rgba(248, 240, 228, 0.98);
  border-color: rgba(220, 200, 175, 0.55);
}

.np-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.9rem 1.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  color: rgba(22, 18, 16, 0.95);
  background: linear-gradient(145deg, rgba(210, 185, 155, 0.95) 0%, rgba(185, 155, 125, 0.88) 100%);
  border: 1px solid rgba(220, 200, 175, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.np-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.np-social {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) 1rem;
}

.np-social__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(200, 175, 150, 0.95);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  font-weight: 300;
  border-bottom: 1px solid rgba(200, 175, 150, 0.3);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.np-social__ig:hover {
  color: rgba(240, 232, 220, 0.98);
  border-color: rgba(240, 232, 220, 0.35);
}

.np-ig-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.88;
}

@media (max-width: 767px) {
  .nico-profile {
    padding-top: max(5rem, calc(4.5rem + env(safe-area-inset-top, 0px)));
    padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }

  .np-hero {
    min-height: min(68vh, 600px);
    margin-left: max(0.45rem, env(safe-area-inset-left, 0px));
    margin-right: max(0.45rem, env(safe-area-inset-right, 0px));
    border-radius: 16px;
  }

  .np-hero__inner {
    padding: 1.5rem 1.1rem 1.75rem;
    padding-bottom: max(1.75rem, env(safe-area-inset-bottom, 0px));
  }

  .np-hero__tagline {
    max-width: none;
  }

  .np-section {
    padding: clamp(2.5rem, 8vw, 4rem) max(1rem, env(safe-area-inset-right, 0px)) clamp(2.5rem, 8vw, 4rem) max(1rem, env(safe-area-inset-left, 0px));
  }

  .np-prose {
    font-size: 0.98rem;
    line-height: 1.88;
  }

  .np-list-modalities li {
    padding-left: 1.15rem;
    font-size: 0.94rem;
  }

  .np-verse-block {
    padding: clamp(1.75rem, 5vw, 2.5rem) 0.75rem;
  }

  .np-cta-panel {
    padding: 1.5rem 1.1rem;
    border-radius: 16px;
  }

  .np-social {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .np-closing {
    padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
  }

  .np-btn,
  .np-btn--ghost {
    min-height: 48px;
    padding: 0.95rem 1.5rem;
    box-sizing: border-box;
  }
}

@media (max-width: 420px) {
  .np-btn,
  .np-btn--ghost {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .np-center-bridge {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* ===== TEAM PAGE (Nico & Valentin Übersicht) – editorial columns, no boxes/circles ===== */
.nv-team-page {
  min-height: 100vh;
  background: var(--bg-primary);
}

.site-header-nav .site-header-nav-current,
.site-header-nav a[aria-current="page"] {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.nv-team-main {
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding: 6.5rem 1.25rem 4rem;
}

.nv-team-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.nv-team-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.nv-team-title {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.nv-team-lead {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 300;
}

.nv-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.75rem, 6vw, 4rem);
  align-items: start;
}

@media (min-width: 768px) {
  .nv-team-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.75rem, 4vw, 3rem);
  }
}

@media (min-width: 1100px) {
  .nv-team-grid--three {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.35rem, 3vw, 2.25rem);
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .nv-team-grid--three .nv-team-column:last-child {
    grid-column: 1 / -1;
    max-width: min(22rem, 100%);
    margin-left: auto;
    margin-right: auto;
  }
}

.nv-team-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: left;
}

.nv-team-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: min(68vh, 52rem);
  overflow: hidden;
  background: var(--bg-secondary);
}

.nv-team-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg-primary) 0%,
    rgba(15, 15, 16, 0.72) 32%,
    transparent 58%
  );
  pointer-events: none;
}

.nv-team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.nv-team-copy {
  padding-top: 1.5rem;
  max-width: 28rem;
}

.nv-team-name {
  font-family: "Cinzel", serif;
  font-size: clamp(1.65rem, 3.2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.nv-team-accent {
  display: block;
  width: 2.75rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 165, 93, 0.35));
  margin-bottom: 1rem;
}

.nv-team-role {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.92;
}

.nv-team-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.nv-team-link {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 165, 93, 0.38);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nv-team-link:hover {
  color: var(--text-primary);
  border-color: var(--gold);
}

@media (max-width: 767px) {
  .nv-team-main {
    padding-top: 5.75rem;
  }

  .nv-team-visual {
    aspect-ratio: 4 / 5;
    max-height: min(58vh, 28rem);
  }

  .nv-team-column {
    text-align: center;
  }

  .nv-team-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .nv-team-accent {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Team page: „Wie NORDVAKA entstanden ist“ – breiter, ruhiger Lesetext */
.nv-team-origin {
  margin-top: clamp(3rem, 8vw, 5rem);
  padding-top: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid rgba(200, 165, 93, 0.12);
  max-width: min(56rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.nv-team-origin-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.25;
}

.nv-team-origin-prose {
  font-size: clamp(0.94rem, 1.35vw, 1.05rem);
  line-height: 1.88;
  font-weight: 300;
  color: var(--text-secondary);
  text-align: left;
}

.nv-team-origin-prose > p {
  margin: 0 0 1.5rem;
}

.nv-team-origin-prose > p:last-child {
  margin-bottom: 0;
}

.nv-team-origin-lead {
  font-size: clamp(1.02rem, 1.6vw, 1.12rem);
  line-height: 1.78;
  color: rgba(244, 241, 234, 0.9);
  text-align: left;
  margin-bottom: 1.75rem !important;
}

.nv-team-origin-quote {
  margin: 1.35rem 0;
  padding: 1.15rem 1.15rem 1.15rem 1.35rem;
  border-left: 2px solid rgba(200, 165, 93, 0.45);
  background: rgba(255, 255, 255, 0.02);
}

.nv-team-origin-quote p {
  margin: 0;
  font-style: italic;
  color: rgba(236, 230, 218, 0.92);
  line-height: 1.75;
}

.nv-team-origin-quote footer {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold);
  opacity: 0.9;
}

.nv-team-origin-quote--center {
  text-align: center;
  border-left: none;
  border-top: 1px solid rgba(200, 165, 93, 0.2);
  border-bottom: 1px solid rgba(200, 165, 93, 0.2);
  padding-left: 1rem;
  padding-right: 1rem;
  background: transparent;
}

.nv-team-origin-quote--center p {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

/* ===== RETREATS PATH HUB ===== */
.nv-retreats-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin: clamp(2rem, 5vw, 3.5rem) 0;
}

.nv-retreats-path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(18rem, 42vw, 24rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.nv-retreats-path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nv-retreats-path-card--men::before {
  background: linear-gradient(145deg, rgba(180, 90, 40, 0.18) 0%, transparent 55%);
}

.nv-retreats-path-card--women::before {
  background: linear-gradient(145deg, rgba(60, 100, 80, 0.22) 0%, transparent 55%);
}

.nv-retreats-path-card:hover,
.nv-retreats-path-card:focus-visible {
  border-color: rgba(200, 165, 93, 0.35);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.nv-retreats-path-card:hover::before,
.nv-retreats-path-card:focus-visible::before {
  opacity: 0.55;
}

.nv-retreats-path-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
}

.nv-retreats-path-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

.nv-retreats-path-desc {
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  flex: 1;
}

.nv-retreats-path-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin-bottom: 1.5rem;
}

.nv-retreats-path-stage {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(244, 241, 234, 0.75);
}

.nv-retreats-path-cta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}

.site-nav-dd-sep {
  height: 1px;
  margin: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  list-style: none;
}

.nv-inner-path {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: clamp(1.5rem, 4vw, 2.25rem) 0;
  border-left: 1px solid rgba(200, 165, 93, 0.25);
  padding-left: clamp(1rem, 3vw, 1.5rem);
}

.nv-inner-path-step {
  position: relative;
  padding: clamp(1rem, 2.5vw, 1.35rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nv-inner-path-step:last-child {
  border-bottom: none;
}

.nv-inner-path-step::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(1rem, 3vw, 1.5rem) - 4px);
  top: 1.45rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.65;
}

.nv-inner-path-name {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-primary);
  margin: 0 0 0.45rem;
}

.nv-inner-path-step--active .nv-inner-path-name {
  color: var(--gold);
}

.nv-inner-path-text {
  font-size: clamp(0.9rem, 1.35vw, 0.98rem);
  line-height: 1.78;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 720px) {
  .nv-retreats-path-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION DIVIDERS (Home) ===== */
.nv-section-divider {
  position: relative;
  z-index: 52;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(2.25rem, 5.5vh, 3.75rem) max(1rem, env(safe-area-inset-right, 0px)) clamp(2.25rem, 5.5vh, 3.75rem) max(1rem, env(safe-area-inset-left, 0px));
  background: var(--bg-primary);
  box-sizing: border-box;
  pointer-events: none;
}

.nv-section-divider::before,
.nv-section-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 56rem);
  height: 1px;
  pointer-events: none;
}

.nv-section-divider::before {
  top: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 165, 93, 0.14) 50%,
    transparent 100%
  );
}

.nv-section-divider::after {
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 100%
  );
}

.nv-section-divider--subtle {
  padding-top: clamp(1.5rem, 3.5vh, 2.25rem);
  padding-bottom: clamp(2rem, 4.5vh, 3rem);
}

.nv-section-divider--compact {
  padding-top: clamp(1.75rem, 4vh, 2.75rem);
  padding-bottom: clamp(1.75rem, 4vh, 2.75rem);
}

.nv-section-divider__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2.5vw, 1.35rem);
  width: min(100%, 22rem);
  transform-origin: center center;
}

.nv-section-divider__line {
  flex: 1 1 0;
  min-width: 2.5rem;
  height: 1px;
  border-radius: 1px;
}

.nv-section-divider__line:first-child {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 165, 93, 0.08) 35%,
    rgba(200, 165, 93, 0.42) 100%
  );
}

.nv-section-divider__line:last-child {
  background: linear-gradient(
    270deg,
    transparent 0%,
    rgba(200, 165, 93, 0.08) 35%,
    rgba(200, 165, 93, 0.42) 100%
  );
}

.nv-section-divider__mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.125rem;
  height: 1.125rem;
}

.nv-section-divider__gem {
  position: relative;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(200, 165, 93, 0.55);
  box-shadow: 0 0 0 4px rgba(200, 165, 93, 0.1);
}

.nv-section-divider__gem::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(200, 165, 93, 0.22);
}

@media (max-width: 767px) {
  .nv-section-divider {
    padding-top: clamp(1.75rem, 4.5vh, 2.5rem);
    padding-bottom: clamp(1.75rem, 4.5vh, 2.5rem);
  }

  .nv-section-divider--subtle {
    padding-top: clamp(1.25rem, 3vh, 1.75rem);
    padding-bottom: clamp(1.5rem, 3.5vh, 2rem);
  }

  .nv-section-divider--compact {
    padding-top: clamp(1.35rem, 3.5vh, 2rem);
    padding-bottom: clamp(1.35rem, 3.5vh, 2rem);
  }

  .nv-section-divider__inner {
    width: min(100%, 16rem);
  }
}

/* ===== TESTIMONIALS (Home) ===== */
.nv-testimonials-section {
  position: relative;
  z-index: 43;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg-primary);
}

.nv-testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.nv-testimonials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.nv-testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 16, 0.92) 0%,
    rgba(15, 15, 16, 0.72) 45%,
    rgba(15, 15, 16, 0.9) 100%
  );
}

.nv-testimonials-inner {
  position: relative;
  z-index: 2;
  max-width: min(44rem, 100%);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 6.5rem) max(1rem, env(safe-area-inset-right, 0px)) clamp(4rem, 10vw, 6.5rem) max(1rem, env(safe-area-inset-left, 0px));
  text-align: center;
}

.nv-testimonials-kicker {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.nv-testimonials-title {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  text-transform: none;
  letter-spacing: 0.04em;
}

.nv-testimonials-slider {
  position: relative;
  width: 100%;
}

.nv-testimonials-swiper {
  width: 100%;
  overflow: hidden;
}

.nv-testimonials-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}

.nv-testimonial-card {
  margin: 0;
  padding: 0 clamp(0.25rem, 2vw, 1rem);
}

.nv-testimonials-pagination {
  position: relative;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 0;
}

.nv-testimonials-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  background: rgba(200, 165, 93, 0.28);
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nv-testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.25);
}

.nv-testimonial-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin-bottom: 1.35rem;
}

.nv-testimonial-label {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 165, 93, 0.82);
}

.nv-testimonial-stars {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.nv-testimonial-quote {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: clamp(1.05rem, 2.1vw, 1.22rem);
  line-height: 1.82;
  color: rgba(245, 242, 235, 0.92);
  margin: 0 0 1.5rem;
  font-style: italic;
  text-transform: none;
  letter-spacing: normal;
}

.nv-testimonial-quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-serif, 'Cinzel', serif);
  font-size: 2rem;
  line-height: 1;
  font-style: normal;
  color: rgba(200, 165, 93, 0.35);
  margin-bottom: 0.35rem;
}

.nv-testimonial-author {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(165, 188, 205, 0.88);
}

@media (max-width: 767px) {
  .nv-testimonials-section {
    background: var(--bg-primary);
  }

  .nv-testimonials-bg,
  .nv-testimonials-section::before {
    display: none !important;
  }

  .nv-testimonials-inner {
    max-width: none;
    padding: max(2.5rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px)) max(2.75rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
    background: var(--bg-primary);
  }

  .nv-testimonials-title {
    margin-bottom: 1.75rem;
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }

  .nv-testimonial-quote {
    font-size: clamp(0.95rem, 3.8vw, 1.08rem);
    line-height: 1.75;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .grain-overlay {
    display: none;
  }
}
