/* ========================================================================
   IMMERSIVE NEURO ART — Webseite
   Stand: 27.04.2026
   ======================================================================== */

/* ----- LOCAL FONTS (DSGVO-konform) -----
   Lade die Schriften von google-webfonts-helper herunter und lege sie in
   /assets/fonts/. Die Pfade hier passen automatisch.
*/
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-v37-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-v37-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display-v37-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/montserrat-v29-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-v29-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat-v29-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-v29-latin-600.woff2') format('woff2');
}

/* ========================================================================
   DESIGN TOKENS
   ======================================================================== */
:root {
  /* Brand colors */
  --navy: #0A0E2A;
  --navy-deep: #06091F;
  --navy-soft: #1A1F3D;
  --gold: #C9A84C;
  --gold-light: #D9B863;
  --gold-soft: #B8993E;
  --purple: #6D53A6;
  --apricot: #F2AD85;
  --ivory: #F2DFBB;
  --ivory-soft: #F8F0DC;
  --cream: #F8F6EE;
  --white: #FFFFFF;
  --text-light: #E8E4D8;
  --text-dim: #B5B0A0;
  --line: rgba(201, 168, 76, 0.2);
  --line-strong: rgba(201, 168, 76, 0.4);

  /* Typography */
  --font-display: 'Playfair Display', 'Cambria', 'Times New Roman', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

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

  /* Layout */
  --max-width: 1280px;
  --max-width-text: 720px;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  background-color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

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

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

/* ========================================================================
   TYPOGRAPHY
   ======================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  margin-bottom: var(--space-sm);
  color: var(--gold-light);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin-bottom: var(--space-xs);
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

p {
  margin-bottom: var(--space-sm);
  max-width: 65ch;
}

.lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 60ch;
}

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

.script-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* ========================================================================
   LAYOUT — CONTAINER, GRID, SECTIONS
   ======================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-3xl) 0;
  }
}

.section-narrow {
  max-width: var(--max-width-text);
  margin: 0 auto;
}

.section-light {
  background: var(--navy-soft);
}

.section-cream {
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory-soft) 100%);
  color: var(--navy);
}

.section-cream h2,
.section-cream h3 {
  color: var(--navy);
}

.section-cream h4 {
  color: var(--navy);
}

.section-cream p {
  color: var(--navy);
}

.section-cream .eyebrow {
  color: var(--gold-soft);
}

.divider-gold {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-md) 0;
}

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

.text-center .divider-gold {
  margin: var(--space-md) auto;
}

/* ========================================================================
   HEADER & NAVIGATION
   ======================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  background: rgba(10, 14, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ivory);
  text-transform: uppercase;
}

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

.nav {
  display: none;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav a:hover,
.nav a.active {
  color: var(--gold-light);
}

/* Mobile menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 1001;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ivory);
  transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--ivory);
  letter-spacing: 0.05em;
}

.mobile-nav a:hover {
  color: var(--gold-light);
}

/* ========================================================================
   HERO — SPLIT LAYOUT (text left, boxed self-hosted video right)
   ======================================================================== */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + var(--space-xl));
  padding-bottom: var(--space-2xl);
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-split-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .hero-split-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 480px;
}

.hero-media {
  width: 100%;
  max-width: 720px;
  flex-shrink: 0;
}

.hero-media video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  background: var(--navy-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: var(--space-md);
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-subline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-light);
  max-width: 56ch;
  margin: 0 0 var(--space-lg);
}

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

@media (min-width: 600px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: var(--space-md);
  }
  .hero-cta-group .btn {
    flex: 1 1 0;
  }
}

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  transition: all 0.4s ease;
  min-height: 48px;
  border-radius: 0;
}

.btn:hover {
  background: var(--gold);
  color: var(--navy);
}

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

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy-deep);
}

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

.btn-light:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ========================================================================
   THREE-CARD GRID (Applications, Layers, Use Cases)
   ======================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

.card {
  padding: var(--space-lg);
  background: var(--navy-soft);
  border: 1px solid var(--line);
  transition: border-color 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.card .eyebrow {
  margin-bottom: var(--space-sm);
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  flex-grow: 1;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.card-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 14px;
}

.card-link::after {
  content: '\2192';
}

/* Cream variant for cards */
.section-cream .card {
  background: var(--white);
  border-color: rgba(201, 168, 76, 0.3);
}

.section-cream .card h3 {
  color: var(--navy);
}

.section-cream .card p {
  color: var(--navy);
}

/* Six-card variant for use cases */
.cards-grid-6 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .cards-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .cards-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-compact {
  padding: var(--space-md);
}

.card-compact h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--font-display);
  color: var(--gold-light);
}

.card-compact p {
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
  color: var(--text-light);
}

.card-compact .layer-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  padding-top: var(--space-xs);
  border-top: 1px solid var(--line);
}

/* ========================================================================
   PRICING TABLE
   ======================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

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

@media (min-width: 1100px) {
  .pricing-grid.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  padding: var(--space-lg);
  background: var(--navy-soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--gold);
  position: relative;
}

.pricing-card.featured::before {
  content: 'BESPOKE';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 4px 14px;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: var(--space-xs);
  color: var(--ivory);
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.pricing-card ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-light);
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card .delivery {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.95rem;
  padding-top: var(--space-sm);
}

/* ========================================================================
   QUOTES & PULL-QUOTES
   ======================================================================== */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  line-height: 1.4;
  color: var(--gold-light);
  text-align: center;
  max-width: 800px;
  margin: var(--space-2xl) auto;
  padding: 0 var(--space-md);
  position: relative;
}

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

.section-cream .pull-quote {
  color: var(--navy);
}

/* Hearth-effect callout */
.callout {
  background: var(--navy-soft);
  border-left: 3px solid var(--gold);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.callout h4 {
  color: var(--gold-light);
  margin-bottom: var(--space-sm);
}

.callout p {
  margin-bottom: var(--space-xs);
}

.callout .source {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
  display: block;
  margin-top: var(--space-sm);
}

.section-cream .callout {
  background: var(--white);
  color: var(--navy);
}

.section-cream .callout p {
  color: var(--navy);
}

.section-cream .callout h4 {
  color: var(--navy);
}

/* ========================================================================
   ATELIER IMAGES (About page)
   ======================================================================== */
.atelier-image {
  width: 100%;
  height: auto;
  margin: var(--space-lg) 0;
}

.atelier-hero {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  object-fit: cover;
  display: block;
}

.image-with-caption {
  margin: var(--space-xl) 0;
}

.image-with-caption img {
  width: 100%;
  height: auto;
}

.image-with-caption figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: var(--space-sm);
  text-align: center;
}

/* ========================================================================
   SCIENCE TABLE (About page)
   ======================================================================== */
.science-table {
  margin: var(--space-xl) 0;
  border-top: 1px solid var(--line-strong);
}

.science-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
  .science-row {
    grid-template-columns: 1fr 2fr 1.5fr;
    gap: var(--space-md);
    align-items: start;
  }
}

.science-row h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
}

.science-row .source {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

.science-row .effect {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ========================================================================
   VIDEO EMBED (Showcase — click-to-play Vimeo, not autoplay)
   ======================================================================== */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy-soft);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================================================
   FORM EMBED (Custom + Notify)
   ======================================================================== */
.form-embed {
  margin: var(--space-xl) auto;
  max-width: 720px;
  background: var(--white);
  padding: var(--space-md);
  border: 1px solid var(--line-strong);
}

.form-embed iframe {
  width: 100%;
  border: 0;
  display: block;
}

.notify-banner {
  background: linear-gradient(135deg, var(--cream), var(--ivory-soft));
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  color: var(--navy);
  margin-top: var(--space-2xl);
}

.notify-banner h2 {
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.notify-banner p {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 0 auto var(--space-lg);
  max-width: 50ch;
}

.notify-banner .form-embed {
  background: var(--white);
  border: 1px solid var(--line-strong);
  margin: 0 auto;
}

/* ========================================================================
   LANGUAGE TOGGLE (Spaces page)
   ======================================================================== */
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  margin-bottom: var(--space-lg);
}

.lang-toggle button {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  background: transparent;
  color: var(--text-light);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-toggle button.active {
  background: var(--gold);
  color: var(--navy);
}

.lang-toggle button:hover:not(.active) {
  color: var(--gold);
}

[data-lang="de"] {
  display: none;
}

body.lang-de [data-lang="en"] {
  display: none;
}

body.lang-de [data-lang="de"] {
  display: block;
}

body.lang-de span[data-lang="de"],
body.lang-de em[data-lang="de"] {
  display: inline;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.site-footer {
  background: var(--navy-deep);
  padding: var(--space-2xl) 0 var(--space-md);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

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

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

.footer-grid h4 {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-sm);
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  padding: 4px 0;
}

.footer-grid a {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

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

.footer-bottom .ai-notice {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ========================================================================
   LEGAL PAGES (Impressum, Privacy)
   ======================================================================== */
.legal-content {
  padding-top: calc(var(--header-height) + var(--space-xl));
  padding-bottom: var(--space-2xl);
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-xl);
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--gold-light);
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.legal-content strong {
  color: var(--ivory);
}

/* ========================================================================
   SCROLL ANIMATIONS — keep subtle, JS-progressive
   Default: visible. Only when JS adds .js-loaded to body, cards become hidden
   until intersection observer reveals them. This way, no-JS users still see content.
   ======================================================================== */
.fade-in-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.js-loaded .fade-in-up {
  opacity: 0;
  transform: translateY(20px);
}

body.js-loaded .fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0.1s; }
.stagger > *:nth-child(2) { transition-delay: 0.2s; }
.stagger > *:nth-child(3) { transition-delay: 0.3s; }
.stagger > *:nth-child(4) { transition-delay: 0.4s; }
.stagger > *:nth-child(5) { transition-delay: 0.5s; }
.stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ========================================================================
   DECORATIVE ELEMENTS — subtle premium touches
   ======================================================================== */
.section-divider {
  width: 100%;
  text-align: center;
  margin: var(--space-xl) 0;
}

.section-divider::before {
  content: '';
  display: inline-block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 var(--space-sm);
}

.section-divider::after {
  content: '';
  display: inline-block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 var(--space-sm);
}

.section-divider span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: middle;
}
