/* ============================================
   TOKENS
============================================ */
:root {
  --color-bg: #16191C;
  --color-bg-alt: #1C2024;
  --color-paper: #F4F2ED;
  --color-paper-dim: #C7CDC9;
  --color-terracotta: #7FA3A8;
  --color-sage: #9FB8A8;
  --color-brown: #5C6A66;

  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;

  --maxw: 1100px;
  --maxw-narrow: 720px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}

body {
  background: var(--color-bg);
  color: var(--color-paper);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ============================================
   NAV
============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 28px 32px;
  mix-blend-mode: difference;
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--color-paper);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-paper);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

@media (max-width: 640px) {
  .nav-links {
    gap: 18px;
  }
  .nav-links a {
    font-size: 0.7rem;
  }
  .nav {
    padding: 20px;
  }
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 32px;
}

/* Breathing rings — signature element */
.hero-breath {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.breath-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(242, 237, 228, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  animation: breathe 7s ease-in-out infinite;
}

.ring-1 {
  width: 340px;
  height: 340px;
  animation-delay: 0s;
}

.ring-2 {
  width: 540px;
  height: 540px;
  border-color: rgba(196, 98, 58, 0.12);
  animation-delay: -2.3s;
}

.ring-3 {
  width: 760px;
  height: 760px;
  border-color: rgba(138, 154, 126, 0.1);
  animation-delay: -4.6s;
}

@keyframes breathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.9;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-quote {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-paper-dim);
  max-width: 540px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.btn {
  display: inline-block;
  border: 1px solid var(--color-terracotta);
  color: var(--color-paper);
  text-decoration: none;
  padding: 16px 38px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--color-terracotta);
  color: var(--color-bg);
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(
    to bottom,
    rgba(242, 237, 228, 0) 0%,
    rgba(242, 237, 228, 0.6) 50%,
    rgba(242, 237, 228, 0) 100%
  );
  animation: scrolldown 2.5s ease-in-out infinite;
}

@keyframes scrolldown {
  0% { transform: translateY(-20px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* ============================================
   ANANDA MARGA STRIP
============================================ */
.margastrip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 8vw, 80px);
  padding: clamp(48px, 10vw, 96px) 32px;
  background: var(--color-bg);
  flex-wrap: wrap;
}

.marga-word {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.marga-big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.06em;
  font-weight: 300;
  color: var(--color-paper);
  font-style: italic;
}

.marga-small {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-top: 12px;
}

.marga-divider {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-brown);
}

/* ============================================
   SECTIONS
============================================ */
.section {
  padding: clamp(80px, 14vw, 160px) 32px;
}

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

.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: var(--maxw-narrow);
}

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

/* ============================================
   OM MIG — two column grid
============================================ */
.om-grid {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  max-width: var(--maxw);
}

.om-image {
  position: sticky;
  top: 120px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.om-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.85) contrast(1.05);
}

.om-text .section-label,
.om-text h2 {
  max-width: var(--maxw-narrow);
}

.om-text .prose {
  max-width: var(--maxw-narrow);
}

@media (max-width: 860px) {
  .om-grid {
    grid-template-columns: 1fr;
  }

  .om-image {
    position: static;
    max-width: 360px;
    margin: 0 auto 16px;
  }
}

.section-label {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 20px;
  font-weight: 500;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 40px;
  color: var(--color-paper);
}

.prose p {
  margin-bottom: 24px;
  color: var(--color-paper-dim);
  font-size: 1.05rem;
}

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

.prose-emphasis {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-paper) !important;
  font-size: 1.2rem !important;
  line-height: 1.5;
  border-left: 2px solid var(--color-terracotta);
  padding-left: 24px;
}

.marga-highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15em;
  color: var(--color-paper);
}

.prose-lead {
  font-size: 1.15rem;
  color: var(--color-paper-dim);
  max-width: 480px;
  margin: 0 auto 48px;
}

.prose-small {
  font-size: 0.95rem;
  color: var(--color-paper-dim);
  margin-top: 32px;
}

/* ============================================
   BEHANDLING — price/duration
============================================ */
.section-meta {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--color-sage);
  margin: 24px 0 40px;
}

.section .btn {
  margin-top: 48px;
}

/* ============================================
   SATSANG CARD
============================================ */
.satsang-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin: 48px 0 32px;
  padding: 40px;
  border: 1px solid rgba(242, 237, 228, 0.12);
  border-radius: 4px;
  background: rgba(242, 237, 228, 0.02);
}

.satsang-when,
.satsang-where {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.satsang-day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-paper);
}

.satsang-time {
  font-size: 0.95rem;
  color: var(--color-sage);
  letter-spacing: 0.05em;
}

.satsang-place {
  font-size: 1.05rem;
  color: var(--color-paper);
}

.satsang-address {
  font-size: 0.9rem;
  color: var(--color-paper-dim);
}

/* ============================================
   KONTAKT
============================================ */
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-bottom: 40px;
}

.contact-link {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 2rem);
  text-decoration: none;
  color: var(--color-paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--color-terracotta);
  border-color: var(--color-terracotta);
}

.contact-instagram {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-sage);
  border-bottom: 1px solid var(--color-sage);
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}

.contact-instagram:hover,
.contact-instagram:focus-visible {
  opacity: 0.7;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  text-align: center;
  padding: 64px 32px;
  background: var(--color-bg);
  border-top: 1px solid rgba(242, 237, 228, 0.08);
}

.footer p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-paper-dim);
}

.footer-fine {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brown);
  margin-top: 16px;
}

/* ============================================
   FOCUS STATES
============================================ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 4px;
}
