/* ============================================
   TANTRA SHIVA KÖLN — Style System
   Editorial-Luxury Aesthetic
   ============================================ */

/* --- Google Fonts Import --- */

/* --- Custom Properties --- */
:root {
  /* Colors */
  --plum: #2D1B2E;
  --plum-light: #3D2B3E;
  --plum-warm: #3A2233;
  --bordeaux: #6B2D3E;
  --bordeaux-soft: #8B4D5E;
  --sand: #D4B896;
  --sand-light: #E4C8A6;
  --creme: #F5F0EB;
  --creme-dark: #EDE5DB;
  --creme-warm: #F8F3ED;
  --gold: #C4A265;
  --gold-light: #D4B275;
  --gold-rose: #D4A87A;
  --warm-brown: #4A3535;
  --warm-dark: #2E2024;
  --blush: #E8D5C8;
  --blush-light: #F0E4DA;
  --anthrazit: #2A2A2A;
  --anthrazit-light: #3A3A3A;
  --white: #FDFCFB;
  --text-dark: #1A1A1A;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --text-on-dark: #E8E0D8;
  --overlay: rgba(45, 27, 46, 0.85);

  /* Creative additions */
  --glow-gold: rgba(212, 178, 117, 0.15);
  --glow-warm: rgba(212, 168, 122, 0.12);
  --radius-xl: 24px;
  --radius-2xl: 40px;
  --radius-round: 50%;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

  /* Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

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

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 860px;
  --max-width-text: 680px;
  --nav-height: 80px;

  /* Transitions — premium spring physics */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
  --duration-fast: 0.25s;
  --duration-normal: 0.5s;
  --duration-slow: 0.85s;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

ul, ol {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 300;
  line-height: 1.1;
}

h2 {
  font-size: var(--text-4xl);
  font-weight: 400;
}

h3 {
  font-size: var(--text-3xl);
  font-weight: 400;
}

h4 {
  font-size: var(--text-2xl);
  font-weight: 500;
}

p {
  margin-bottom: 1em;
  font-size: var(--text-base);
}

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

.lead {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--text-medium);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.text-on-dark .eyebrow {
  color: var(--gold-light);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

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

.section {
  padding: var(--space-3xl) 0;
}

.section--dark {
  background-color: var(--plum);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--creme);
}

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

.section--anthrazit {
  background-color: var(--anthrazit);
  color: var(--text-on-dark);
}

.section--anthrazit h2,
.section--anthrazit h3 {
  color: var(--creme);
}

/* --- Navigation — floating pill --- */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 48px);
  height: 60px;
  border-radius: 9999px;
  z-index: 1000;
  transition: background-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
  border: 1px solid rgba(212, 178, 117, 0.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav--transparent {
  background-color: rgba(45, 27, 46, 0.55);
}

.nav--solid {
  background-color: rgba(45, 27, 46, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.06);
  border-color: rgba(212, 178, 117, 0.12);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--creme);
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav__logo span {
  color: var(--gold);
}

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

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--creme);
  letter-spacing: 0.03em;
  padding: 0.5em 0;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--gold-light);
}

.nav__cta {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--plum);
  background-color: var(--gold);
  padding: 0.6em 1.4em;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
  letter-spacing: 0.03em;
}

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

/* Mobile Navigation */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--creme);
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background-color: var(--plum);
  overflow: hidden;
}

.hero--short {
  min-height: 50vh;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 27, 46, 0.92) 0%,
    rgba(45, 27, 46, 0.7) 50%,
    rgba(107, 45, 62, 0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
}

.hero__title {
  color: var(--creme);
  margin-bottom: var(--space-md);
  max-width: 800px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--sand-light);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.hero__meta {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(212, 184, 150, 0.2);
}

.hero__meta-item {
  text-align: left;
}

.hero__meta-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.25em;
}

.hero__meta-label {
  font-size: var(--text-xs);
  color: var(--sand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.85em 2.2em;
  min-height: 44px;
  border-radius: 9999px;
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  text-transform: uppercase;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--plum);
}

.btn--primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(196, 162, 101, 0.35);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
}

.btn--outline {
  border: 1px solid var(--sand);
  color: var(--sand);
  background: transparent;
}

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

.btn--dark {
  background-color: var(--plum);
  color: var(--creme);
}

.btn--dark:hover {
  background-color: var(--plum-light);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--gold);
  padding: 0.5em 0;
  min-height: 44px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.btn--ghost::after {
  content: '→';
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

/* --- Cards --- */
.card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

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

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__body {
  padding: var(--space-lg);
}

.card__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--text-medium);
  font-size: var(--text-sm);
}

/* Card on dark background */
.card--dark {
  background-color: var(--plum-light);
  border: 1px solid rgba(212, 184, 150, 0.1);
}

.card--dark .card__title {
  color: var(--creme);
}

.card--dark .card__text {
  color: var(--text-on-dark);
}

/* --- Grid Layouts --- */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--asymmetric {
  grid-template-columns: 1.2fr 0.8fr;
}

.grid--asymmetric-reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

/* --- Split Layout --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__content {
  padding: var(--space-xl) 0;
}

.split__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  counter-reset: step;
}

.step {
  counter-increment: step;
  position: relative;
  padding-top: var(--space-xl);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
}

.step__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.step__text {
  font-size: var(--text-sm);
  color: var(--text-medium);
}

.section--dark .step__text {
  color: var(--text-on-dark);
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--creme-dark);
}

.section--dark .faq-item {
  border-bottom-color: rgba(212, 184, 150, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

.faq-question:hover {
  color: var(--bordeaux);
}

.section--dark .faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: var(--space-md);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
  transition: transform var(--duration-fast) var(--ease-out);
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-answer__inner {
  padding-bottom: var(--space-md);
  font-size: var(--text-base);
  color: var(--text-medium);
  line-height: 1.8;
}

.section--dark .faq-answer__inner {
  color: var(--text-on-dark);
}

.faq-answer__inner a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-fast) var(--ease-out);
}

.faq-answer__inner a:hover {
  border-bottom-color: var(--gold);
}

/* --- Team Grid --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.team-member {
  text-align: center;
}

.team-member__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  position: relative;
  background: linear-gradient(160deg, var(--plum) 0%, #3a1a28 100%);
  box-shadow: 0 8px 32px rgba(44, 22, 32, 0.25);
}

/* Einheitlicher Gold-Gradient am unteren Rand */
.team-member__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 45%,
    rgba(44, 22, 32, 0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Dezenter Gold-Rahmen */
.team-member__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 0 1px rgba(196, 162, 101, 0.18);
  pointer-events: none;
  z-index: 2;
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform var(--duration-slow) var(--ease-out),
              filter var(--duration-slow) var(--ease-out);
  filter: sepia(20%) saturate(80%) brightness(0.92) contrast(1.05);
}

.team-member:hover .team-member__photo img {
  transform: scale(1.05);
  filter: sepia(8%) saturate(95%) brightness(1) contrast(1.02);
}

.team-member__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: 0.2em;
  color: var(--plum);
  letter-spacing: 0.03em;
}

.team-member__role {
  font-size: var(--text-xs);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.gallery__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

/* --- Pricing Table --- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.price-card {
  background-color: var(--white);
  border: 1px solid var(--creme-dark);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.price-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(196, 162, 101, 0.1);
}

.price-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xs);
}

.price-card__desc {
  font-size: var(--text-sm);
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
}

.price-card__options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.price-option {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--creme-dark);
}

.price-option:last-child {
  border-bottom: none;
}

.price-option__duration {
  font-size: var(--text-sm);
  color: var(--text-medium);
}

.price-option__amount {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--plum);
}

/* --- Trust / Reviews --- */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
}

.trust-stars {
  color: var(--gold);
  font-size: var(--text-lg);
  letter-spacing: 2px;
}

.trust-rating {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: var(--space-3xl) 0;
}

.cta-section h2 {
  margin-bottom: var(--space-md);
}

.cta-section p {
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.cta-phone {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--gold);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.cta-email {
  font-size: var(--text-base);
  color: var(--sand);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* --- Footer --- */
.footer {
  background: linear-gradient(180deg, var(--warm-dark) 0%, #1a1214 100%);
  color: var(--text-on-dark);
  padding: var(--space-3xl) 0 var(--space-lg);
  position: relative;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--creme);
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.footer__brand span {
  color: var(--gold);
}

.footer__desc {
  font-size: var(--text-sm);
  color: rgba(232, 224, 216, 0.55);
  line-height: 1.8;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--gold-rose);
  opacity: 0.5;
}

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

.footer__link {
  font-size: var(--text-sm);
  color: rgba(232, 224, 216, 0.5);
  padding-block: 10px;
  transition: color var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.footer__link:hover {
  color: var(--creme);
  transform: translateX(4px);
}

.footer__contact-item {
  font-size: var(--text-sm);
  color: rgba(232, 224, 216, 0.5);
  margin-bottom: 0.6rem;
}

.footer__contact-item a {
  color: rgba(232, 224, 216, 0.5);
  transition: color var(--duration-fast) var(--ease-out);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer__contact-item a:hover {
  color: var(--gold-light);
}

.footer__contact-item strong {
  color: var(--creme);
  font-weight: 400;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(212, 178, 117, 0.08);
  font-size: var(--text-xs);
  color: rgba(232, 224, 216, 0.35);
  letter-spacing: 0.05em;
}

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

.footer__legal-links a {
  color: rgba(232, 224, 216, 0.35);
  transition: color var(--duration-fast) var(--ease-out);
  letter-spacing: 0.05em;
  padding-block: 12px;
}

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

/* --- Breadcrumb --- */
.breadcrumb {
  padding: var(--space-sm) 0;
  font-size: var(--text-xs);
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-light);
  transition: color var(--duration-fast) var(--ease-out);
}

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

.breadcrumb span {
  margin: 0 0.5em;
  opacity: 0.5;
}

.section--dark .breadcrumb,
.section--dark .breadcrumb a {
  color: var(--sand);
}

/* --- Content Sections --- */
.content-section {
  padding: var(--space-2xl) 0;
}

.content-section h2 {
  margin-bottom: var(--space-lg);
}

.content-section h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.content-section p + p {
  margin-top: 0;
}

.content-section ul {
  margin: var(--space-md) 0;
  padding-left: 1.5em;
}

.content-section ul li {
  position: relative;
  padding-left: 0.5em;
  margin-bottom: 0.5em;
  list-style: none;
}

.content-section ul li::before {
  content: '';
  position: absolute;
  left: -1em;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
}

/* Inline link styling in content */
.content-section a:not(.btn) {
  color: var(--bordeaux);
  border-bottom: 1px solid rgba(107, 45, 62, 0.3);
  transition: border-color var(--duration-fast) var(--ease-out);
}

.content-section a:not(.btn):hover {
  border-bottom-color: var(--bordeaux);
}

.section--dark .content-section a:not(.btn) {
  color: var(--gold);
  border-bottom-color: rgba(196, 162, 101, 0.3);
}

.section--dark .content-section a:not(.btn):hover {
  border-bottom-color: var(--gold);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-block h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: var(--gold);
}

.contact-block p {
  font-size: var(--text-base);
  color: var(--text-medium);
}

.contact-block a {
  color: var(--bordeaux);
}

.contact-block a:hover {
  color: var(--gold);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* --- Hub Teaser Grid --- */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.hub-teaser {
  padding: var(--space-xl);
  border: 1px solid rgba(212, 184, 150, 0.15);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.hub-teaser:hover {
  border-color: var(--gold);
  background-color: rgba(196, 162, 101, 0.05);
}

.section--dark .hub-teaser:hover {
  background-color: rgba(196, 162, 101, 0.08);
}

.hub-teaser__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.section--dark .hub-teaser__title {
  color: var(--creme);
}

.hub-teaser__text {
  font-size: var(--text-sm);
  color: var(--text-medium);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.section--dark .hub-teaser__text {
  color: var(--text-on-dark);
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity var(--duration-slow) var(--ease-fluid),
              transform var(--duration-slow) var(--ease-fluid),
              filter var(--duration-slow) var(--ease-fluid);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Decorative Elements --- */
.divider {
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  margin: var(--space-lg) 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  text-align: center;
  max-width: var(--max-width-text);
  margin: 0 auto var(--space-2xl);
}

.section-intro h2 {
  margin-bottom: var(--space-md);
}

.section-intro p {
  color: var(--text-medium);
  font-size: var(--text-lg);
}

.section--dark .section-intro p {
  color: var(--text-on-dark);
}

/* --- Page Content Wrapper --- */
.page-content {
  padding-top: var(--nav-height);
}

/* ============================================
   HOMEPAGE CREATIVE STYLES
   Warm, inviting, editorial-boutique aesthetic
   ============================================ */

/* --- Immersive Hero (Homepage) --- */
.hero--immersive {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--warm-dark);
}

.hero--immersive .hero__bg img {
  opacity: 0.5;
  animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

.hero--immersive .hero__overlay {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(212, 168, 122, 0.1) 0%, transparent 60%),
    linear-gradient(180deg,
      rgba(46, 32, 36, 0.75) 0%,
      rgba(46, 32, 36, 0.6) 40%,
      rgba(46, 32, 36, 0.85) 100%
    );
}

.hero--immersive .hero__content {
  max-width: 900px;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
}

.hero--immersive .hero__title {
  font-size: var(--text-6xl);
  font-weight: 300;
  max-width: none;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero--immersive .hero__subtitle {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  font-size: var(--text-xl);
  color: var(--blush);
}

.hero--immersive .hero__actions {
  justify-content: center;
}

/* Trust Glass Bar */
.trust-glass {
  position: relative;
  z-index: 2;
  margin-top: var(--space-2xl);
  display: inline-flex;
  gap: var(--space-xl);
  padding: var(--space-md) var(--space-xl);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
}

.trust-glass__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--sand-light);
  font-size: var(--text-sm);
  white-space: nowrap;
}

.trust-glass__stars {
  color: var(--gold);
  letter-spacing: 1px;
}

.trust-glass__value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--gold);
}

/* --- Organic Section Transitions --- */
.section-wave {
  position: relative;
  overflow: hidden;
}

.section-wave::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  z-index: 1;
}

.wave-top {
  position: relative;
  margin-top: -1px;
}

.wave-top svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Gradient Transitions */
.section--gradient-warm {
  background: linear-gradient(180deg, var(--creme-warm) 0%, var(--white) 100%);
}

.section--gradient-to-dark {
  background: linear-gradient(180deg, var(--creme) 0%, var(--warm-dark) 100%);
  color: var(--text-dark);
}

.section--warm-dark {
  background-color: var(--warm-dark);
  color: var(--text-on-dark);
}

.section--warm-dark h2,
.section--warm-dark h3 {
  color: var(--creme);
}

.section--blush {
  background-color: var(--blush-light);
}

/* --- Organic Image Styles --- */
.img-organic {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

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

.img-organic--glow {
  box-shadow: 0 20px 60px var(--glow-warm);
}

.img-organic--float {
  position: relative;
  z-index: 2;
}

/* Overlap layout */
.overlap-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
}

.overlap-layout__media {
  position: relative;
  z-index: 1;
  padding: var(--space-lg);
}

.overlap-layout__content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl);
  margin-left: calc(var(--space-xl) * -1);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.overlap-layout--reverse .overlap-layout__content {
  margin-left: 0;
  margin-right: calc(var(--space-xl) * -1);
  order: -1;
}

/* --- Pull Quote --- */
.pull-quote {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--bordeaux-soft);
  max-width: 700px;
  margin: var(--space-xl) auto;
  text-align: center;
  position: relative;
  padding: var(--space-lg) 0;
}

.pull-quote::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto var(--space-lg);
}

.section--warm-dark .pull-quote {
  color: var(--blush);
}

/* --- Timeline Steps --- */
.timeline {
  position: relative;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.timeline__item {
  display: flex;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  position: relative;
}

.timeline__marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-round);
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gold);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px var(--glow-gold);
}

.section--warm-dark .timeline__marker {
  background: var(--warm-dark);
}

.section--warm-dark .timeline::before {
  background: linear-gradient(180deg, transparent, var(--gold-rose), transparent);
}

.timeline__content h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xs);
}

.timeline__content p {
  color: var(--text-medium);
  font-size: var(--text-base);
}

.section--warm-dark .timeline__content p {
  color: var(--text-on-dark);
}

/* --- Testimonial Cards --- */
.testimonial-row {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-sm) 0;
  scrollbar-width: none;
}

.testimonial-row::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--creme-dark);
  position: relative;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: var(--text-lg);
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-card__text {
  font-style: italic;
  font-size: var(--text-base);
  color: var(--text-medium);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.testimonial-card__author {
  font-size: var(--text-sm);
  color: var(--text-light);
}

.testimonial-card__author strong {
  color: var(--text-dark);
  font-weight: 500;
}

/* --- Warm Glow Effects --- */
.glow-spot {
  position: relative;
}

.glow-spot::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.glow-spot--top-right::after {
  top: -200px;
  right: -100px;
}

.glow-spot--bottom-left::after {
  bottom: -200px;
  left: -100px;
}

/* --- Decorative Shapes --- */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 162, 101, 0.15);
  pointer-events: none;
}

.deco-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  pointer-events: none;
  opacity: 0.3;
}

/* --- Soft CTA Section --- */
.cta-warm {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.cta-warm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--glow-gold) 0%, transparent 70%);
  pointer-events: none;
}

.cta-warm h2 {
  position: relative;
  z-index: 1;
}

.cta-warm p {
  position: relative;
  z-index: 1;
}

/* --- Feature List (inline icons) --- */
.features-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.6em 1.2em;
  background: rgba(196, 162, 101, 0.08);
  border-radius: var(--radius-2xl);
  font-size: var(--text-sm);
  color: var(--text-medium);
  border: 1px solid rgba(196, 162, 101, 0.12);
}

.feature-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.section--warm-dark .feature-pill {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
}

/* --- Grain Texture (dark sections) --- */
.section--warm-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.section--warm-dark > * {
  position: relative;
  z-index: 1;
}

/* --- Cookie Banner (DSGVO) --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--warm-dark);
  color: var(--text-on-dark);
  padding: var(--space-lg) var(--space-lg);
  border-top: 1px solid rgba(212, 178, 117, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out);
}

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

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 280px;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--sand-light);
}

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

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.6em 1.4em;
  min-height: 44px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.cookie-banner__btn--accept {
  background: var(--gold);
  color: var(--plum);
}

.cookie-banner__btn--accept:hover {
  background: var(--gold-light);
}

.cookie-banner__btn--reject {
  background: transparent;
  color: var(--sand-light);
  border: 1px solid rgba(212, 178, 117, 0.25);
}

.cookie-banner__btn--reject:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
  .cookie-banner {
    padding-bottom: calc(var(--space-lg) + 70px); /* Space for mobile call button */
  }
}

/* --- Grain texture (fixed, GPU-safe, pointer-events-none) --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* --- Double-bezel image wrapper --- */
.img-bezel {
  padding: 6px;
  background: rgba(255,255,255,0.04);
  border-radius: calc(var(--radius-xl) + 6px);
  border: 1px solid rgba(212, 178, 117, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 48px -12px rgba(0,0,0,0.18);
}

.img-bezel > .img-organic {
  border-radius: var(--radius-xl);
}

/* --- Nav CTA pill (button-in-button pattern) --- */
.nav__cta {
  border-radius: 9999px !important;
}

/* --- Sticky Mobile Call Button --- */
.mobile-call-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-call-btn {
    display: flex;
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    z-index: 999;
    background: var(--gold);
    color: var(--plum);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
    padding: 16px 24px;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(196,162,101,0.25);
    transition: transform var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out);
  }
  .mobile-call-btn:active {
    transform: scale(0.97);
  }
  .mobile-call-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
}

/* --- Responsive: Creative Components --- */
@media (max-width: 1024px) {
  .overlap-layout {
    grid-template-columns: 1fr;
  }

  .overlap-layout__content {
    margin-left: 0;
    margin-top: calc(var(--space-xl) * -1);
  }

  .overlap-layout--reverse .overlap-layout__content {
    margin-right: 0;
    order: 0;
  }

  .trust-glass {
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
  }

  .hero--immersive .hero__title {
    font-size: var(--text-5xl);
  }
}

@media (max-width: 768px) {
  #willkommen .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  #willkommen .img-organic div[style*="bottom: -24px"] {
    bottom: -12px !important;
    right: 12px !important;
  }

  .hero--immersive .hero__title {
    font-size: var(--text-4xl);
  }

  .hero--immersive .hero__subtitle {
    font-size: var(--text-lg);
  }

  .trust-glass {
    flex-direction: column;
    align-items: center;
    border-radius: var(--radius-xl);
    padding: var(--space-md);
  }

  .pull-quote {
    font-size: var(--text-3xl);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline__marker {
    width: 40px;
    height: 40px;
    font-size: var(--text-base);
  }

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

  .testimonial-row {
    gap: var(--space-md);
  }

  .testimonial-card {
    flex: 0 0 280px;
  }

  .features-inline {
    gap: var(--space-xs);
  }

  .overlap-layout__content {
    margin: calc(var(--space-md) * -1) var(--space-md) 0;
    padding: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .hero--immersive .hero__title {
    font-size: var(--text-3xl);
  }

  .testimonial-card {
    flex: 0 0 260px;
  }
}

/* --- Existing Responsive --- */
@media (max-width: 1024px) {
  :root {
    --text-5xl: 2.75rem;
    --text-4xl: 2.25rem;
    --text-3xl: 1.75rem;
  }

  .grid--4,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --text-6xl: 3rem;
    --text-5xl: 2.25rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
    --space-3xl: 5rem;
    --space-2xl: 4rem;
  }

  .nav__links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
  }

  .nav__links.active {
    display: flex;
    flex: 1;
    width: 100%;
    background-color: var(--plum);
    padding: var(--space-xl) 0;
  }

  /* Override nav pill constraints when menu is open */
  .nav.nav--menu-open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    border-radius: 0 !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: var(--plum) !important;
    border: none !important;
    z-index: 9998 !important;
  }

  .nav.nav--menu-open .nav__inner {
    height: 100% !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding-top: var(--space-xl) !important;
  }

  .nav.nav--menu-open .nav__logo {
    margin-bottom: auto;
  }

  .nav__links .nav__cta {
    margin-top: var(--space-md);
    font-size: var(--text-lg);
  }

  .nav__link {
    font-size: var(--text-xl);
  }

  .nav__toggle {
    display: flex;
    z-index: 10000;
    position: relative;
  }

  .nav__links.active ~ .mobile-call-btn,
  body:has(.nav__links.active) .mobile-call-btn {
    display: none;
  }

  .split,
  .grid--2,
  .grid--3,
  .grid--asymmetric,
  .grid--asymmetric-reverse {
    grid-template-columns: 1fr;
  }

  .split--reverse {
    direction: ltr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .hero__meta {
    flex-direction: column;
    gap: var(--space-md);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .trust-bar {
    flex-direction: column;
    gap: var(--space-md);
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: var(--text-4xl);
  }
}

@media (max-width: 480px) {
  :root {
    --text-5xl: 2rem;
    --text-4xl: 1.5rem;
    --nav-height: 64px;
  }

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

  .gallery {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Language Switcher --- */
.nav__lang {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  border: 1px solid rgba(212, 178, 117, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}

.nav__lang:hover {
  background: rgba(212, 178, 117, 0.15);
  color: var(--gold);
}
