/* ============================================================
   Meditative Living - styles.css
   Editorial manuscript aesthetic, warm cream paper, ink + sepia
   ============================================================ */

:root {
  --paper:        #ECE2CC;
  --paper-deep:   #E0D2B0;
  --paper-soft:   #F1E9D4;
  --ink:          #1A1612;
  --ink-soft:     #2D2418;
  --ink-muted:    #5A4F3D;
  --ink-faint:    #8A7C64;
  --accent:       #8B5A38;
  --accent-deep:  #6E4528;
  --accent-soft:  #B27851;

  /* Stille-Akzente fuer Themen */
  --tone-sage:    #E2E0CE;
  --tone-mist:    #DCDEDA;
  --tone-stone:   #E4D8BF;

  --line:         rgba(26,22,18,0.14);
  --line-strong:  rgba(26,22,18,0.28);

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --container: 1200px;
  --narrow:    720px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--paper);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(139,90,56,0.04) 0, transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(139,90,56,0.05) 0, transparent 45%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.10 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.045 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 0.55;
}

main, header, footer { position: relative; z-index: 2; }

::selection { background: var(--accent); color: var(--paper); }

.serif-italic, h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.serif-italic { font-style: italic; }

h1 { font-size: clamp(3.2rem, 9vw, 6.5rem); line-height: 1.0; margin: 0; font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.15; margin: 0 0 1.8rem; font-weight: 400; }
h3 { font-size: 1.55rem; line-height: 1.25; margin: 0.5rem 0 0.8rem; font-weight: 400; }

p { margin: 0 0 1.3em; }

a {
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 220ms var(--ease), border-color 220ms var(--ease);
}
a:hover { color: var(--ink); border-color: var(--ink); }

strong { font-weight: 500; color: var(--ink); }
em { font-style: italic; }
cite { font-style: normal; color: var(--ink-muted); font-size: 0.92rem; }

.label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.5rem;
}

.lead {
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.dropcap {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 4.2em;
  float: left;
  line-height: 0.82;
  padding: 0.08em 0.12em 0 0;
  color: var(--accent);
}

.skiplink {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 0.6em 1em; z-index: 100; border: 0;
}
.skiplink:focus { left: 1rem; top: 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 2.4rem; }
.narrow { max-width: var(--narrow); }

@media (max-width: 640px) { .container { padding: 0 1.4rem; } }

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  background: rgba(236,226,204,0.7);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid transparent;
  z-index: 50;
  transition: background 240ms var(--ease), border-color 240ms var(--ease);
}
.topbar.scrolled {
  background: rgba(236,226,204,0.92);
  border-bottom-color: var(--line);
}

.bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.95rem 2.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; border: 0; color: var(--ink); }
.brand .mark { color: var(--accent); display: flex; align-items: center; }
.brand-name {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.25rem; color: var(--ink); display: block; line-height: 1;
}
.brand-sub {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-faint); display: block;
  margin-top: 0.15rem;
}

.nav { display: flex; gap: 1.6rem; justify-self: center; }
.nav a {
  font-family: var(--sans); font-size: 0.82rem;
  color: var(--ink-muted); border: 0; letter-spacing: 0.04em;
  position: relative; padding: 0.3em 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transform-origin: left; transition: transform 320ms var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.lang { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--ink-faint); }
.lang-btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--sans); font-size: 0.82rem; color: var(--ink-faint);
  letter-spacing: 0.08em; transition: color 200ms;
}
.lang-btn.active { color: var(--ink); font-weight: 500; }
.lang-btn:hover { color: var(--ink); }

.menu-btn {
  display: none; background: none; border: 0; padding: 0.4em; cursor: pointer;
  flex-direction: column; gap: 4px;
}
.menu-btn span {
  display: block; width: 22px; height: 1.2px; background: var(--ink);
  transition: transform 280ms var(--ease), opacity 200ms;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.2px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.2px) rotate(-45deg); }

.mnav {
  display: flex; flex-direction: column;
  padding: 0.5rem 2.4rem 1.4rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mnav[hidden] { display: none; }
.mnav a {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.45rem; padding: 0.7rem 0;
  color: var(--ink); border: 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 980px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
  .bar { grid-template-columns: 1fr auto auto; gap: 1.2rem; padding: 0.85rem 1.4rem; }
}

/* HERO */
.hero {
  position: relative;
  padding: clamp(7rem, 18vh, 13rem) 0 clamp(6rem, 12vh, 9rem);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.92);
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(236,226,204,0.62) 0%, rgba(236,226,204,0.84) 60%, var(--paper) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(26,22,18,0.10) 100%);
}

.hero-inner { max-width: 920px; margin: 0 auto; padding: 0 1.4rem; position: relative; }

.ornament { color: var(--accent); margin-bottom: 2rem; display: flex; justify-content: center; }

.kicker {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 1.8rem;
}

h1.display {
  display: block;
  font-size: clamp(3.4rem, 12vw, 8.5rem);
  line-height: 0.95;
  font-weight: 300;
  margin: 0 0 2.3rem;
  color: var(--ink);
}
h1.display .serif-italic { display: block; margin-bottom: -0.1em; }
h1.display span:last-child { display: block; font-weight: 300; }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto 2.4rem;
}

.byline {
  font-family: var(--sans); font-size: 0.84rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); margin: 0;
}
.byline .sep { margin: 0 0.7em; color: var(--accent); }

.hero-rule { width: 1px; height: 60px; background: var(--accent); margin: 3rem auto 0; opacity: 0.5; }

/* SECTIONS */
.section { padding: clamp(4rem, 10vh, 7rem) 0; position: relative; }
.section + .section { border-top: 1px solid var(--line); }

.section-head { text-align: center; margin-bottom: 4rem; }
.section-head .label { margin-bottom: 1rem; }

/* PULL-QUOTE */
.pullquote {
  position: relative;
  padding: clamp(7rem, 16vh, 10rem) 0;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.pull-bg { position: absolute; inset: 0; z-index: -1; }
.pull-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) brightness(0.85); }
.pull-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--paper) 0%, rgba(236,226,204,0.65) 25%, rgba(236,226,204,0.65) 75%, var(--paper) 100%);
}
.pull-inner { position: relative; }
.pullquote blockquote { margin: 0; }
.pullquote blockquote p {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.35; color: var(--ink); margin: 0 0 1.5rem;
}
.pullquote cite {
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
}

/* THEMES */
.themes { position: relative; overflow: hidden; }
.silhouettes-bg {
  position: absolute; right: -8%; top: 0; bottom: 0;
  width: 50%; opacity: 0.06; z-index: 0; pointer-events: none;
}
.silhouettes-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.themes .container { position: relative; z-index: 1; }

.theme-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.theme {
  background: var(--paper);
  padding: 2.4rem 1.8rem;
  position: relative;
  transition: background 380ms var(--ease);
}
.theme.tone-sage:hover  { background: var(--tone-sage); }
.theme.tone-mist:hover  { background: var(--tone-mist); }
.theme.tone-stone:hover { background: var(--tone-stone); }
.theme:hover { background: var(--paper-soft); }
.theme .num {
  display: block;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1rem; color: var(--accent);
  margin-bottom: 0.8rem; letter-spacing: 0.05em;
}
.theme h3 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.55rem; margin: 0 0 0.8rem; line-height: 1.2;
}
.theme p { font-size: 0.94rem; line-height: 1.6; color: var(--ink-muted); margin: 0; }

@media (max-width: 980px) { .theme-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .theme-grid { grid-template-columns: 1fr; } .theme { padding: 2rem 1.5rem; } }

/* EXERCISE */
.exercise-list { list-style: none; padding: 0; margin: 3rem 0 0; }
.exercise-list > li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 2.2rem 0;
  border-bottom: 1px dotted var(--line);
}
.exercise-list > li:last-child { border-bottom: 0; }
.roman {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 2.2rem; color: var(--accent); line-height: 1; padding-top: 0.1em;
}
.exercise-list p { margin: 0; font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); }

@media (max-width: 600px) {
  .exercise-list > li { grid-template-columns: 56px 1fr; gap: 1rem; padding: 1.8rem 0; }
  .roman { font-size: 1.7rem; }
}

/* BOOKS */
.book-list { display: grid; gap: 4rem; margin-top: 1rem; }
.book {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}
.book:nth-child(even) { grid-template-columns: 1fr 220px; }
.book:nth-child(even) .book-cover { order: 2; }

.book-cover {
  aspect-ratio: 2 / 3;
  position: relative;
  perspective: 800px;
  background: var(--paper-deep);
  box-shadow: 0 1px 2px rgba(26,22,18,0.10), 0 14px 30px -10px rgba(26,22,18,0.30);
  transition: transform 480ms var(--ease), box-shadow 480ms var(--ease);
  transform: rotate(-1deg);
}
.book:nth-child(2) .book-cover { transform: rotate(1deg); }
.book:nth-child(3) .book-cover { transform: rotate(-0.7deg); }
.book:hover .book-cover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 1px 2px rgba(26,22,18,0.10), 0 22px 40px -10px rgba(26,22,18,0.35); }
.book-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.book-lang {
  font-family: var(--sans); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 0.6rem;
}
.book-body h3 { font-family: var(--serif); font-style: italic; font-size: 2rem; margin: 0 0 1.2rem; line-height: 1.15; }
.book-body p { font-size: 1rem; color: var(--ink-soft); }

.endorse { margin: 1.5rem 0 0; padding: 1.2rem 0 0; border-top: 1px solid var(--line); }
.endorse p {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  line-height: 1.55; color: var(--ink); margin: 0 0 0.6rem;
}
.endorse cite { font-size: 0.78rem; letter-spacing: 0.12em; }

.book-order { margin-top: 1rem; font-size: 0.95rem; }

@media (max-width: 720px) {
  .book, .book:nth-child(even) { grid-template-columns: 1fr; gap: 1.8rem; max-width: 400px; margin: 0 auto; }
  .book:nth-child(even) .book-cover { order: 0; }
  .book-cover { max-width: 220px; }
}

/* AUTHOR */
.author-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}
.author-portrait { padding-top: 0.6rem; }
.portrait-frame {
  aspect-ratio: 3 / 4;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.portrait-frame::before {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(236,226,204,0.6); opacity: 0.7;
  pointer-events: none; z-index: 2;
}
.portrait-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.portrait-meta {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: end;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(0deg, rgba(26,22,18,0.55), transparent);
  font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--paper);
  z-index: 3;
}

.author-text .label { margin-bottom: 0.8rem; }
.author-text h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1.8rem; }
.author-text p { font-size: 1.04rem; line-height: 1.75; }

@media (max-width: 820px) {
  .author-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .author-portrait { max-width: 260px; margin: 0 auto; }
}

/* CONTACT */
.contact { text-align: center; padding-bottom: clamp(5rem, 10vh, 8rem); }
.contact .label { margin: 0 auto 1rem; }
.contact h2 { margin-bottom: 1.4rem; }
.contact-email {
  margin: 2.4rem 0 0.6rem;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}
.contact-email a { color: var(--ink); border-bottom: 1px solid var(--accent); padding-bottom: 0.05em; }
.contact-email a:hover { color: var(--accent-deep); }

/* FOOTER */
.foot {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  padding: 3rem 0 2.5rem;
  margin-top: 4rem;
}
.foot-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.foot-brand {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  color: var(--ink);
}
.foot-brand .mark { color: var(--accent); display: flex; }
.foot-nav { display: flex; gap: 1.8rem; justify-self: center; }
.foot-nav a {
  font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--ink-muted); border: 0;
  padding-bottom: 1px; border-bottom: 1px solid transparent;
}
.foot-nav a:hover { color: var(--ink); border-bottom-color: var(--accent); }
.foot-copy {
  font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.06em;
  color: var(--ink-faint); margin: 0; justify-self: end;
}

@media (max-width: 720px) {
  .foot-inner { grid-template-columns: 1fr; text-align: center; gap: 1.4rem; }
  .foot-brand, .foot-nav, .foot-copy { justify-self: center; }
}

/* LEGAL PAGES */
.legal-page main { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
.legal-page h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-style: italic; margin: 0 0 1.5rem; }
.legal-page h2 { font-size: 1.35rem; font-weight: 500; font-family: var(--sans); font-style: normal; margin: 2.2rem 0 0.8rem; letter-spacing: 0.02em; color: var(--ink); }
.legal-page p, .legal-page li { font-size: 0.98rem; line-height: 1.7; }
.legal-page ul { padding-left: 1.4rem; }
.legal-page .brief-en {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  color: var(--ink-muted); padding: 1.2rem 1.6rem; border-left: 2px solid var(--accent);
  background: var(--paper-soft); margin: 1.5rem 0 2.5rem;
}
.legal-page .date {
  margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  font-size: 0.82rem; color: var(--ink-faint); letter-spacing: 0.06em; text-transform: uppercase;
}

nav.simple {
  border-bottom: 1px solid var(--line); padding: 1.2rem 2rem;
  background: rgba(236,226,204,0.85);
}
nav.simple .brand { max-width: 1180px; margin: 0 auto; }

footer.simple {
  border-top: 1px solid var(--line); padding: 2rem;
  text-align: center; font-size: 0.85rem; color: var(--ink-muted);
  background: var(--paper-deep); margin-top: 4rem;
}
footer.simple .links { margin-bottom: 0.6rem; }
footer.simple a { color: var(--ink-muted); border: 0; }
footer.simple a:hover { color: var(--ink); }

/* 404 */
.page-404 main {
  min-height: 80vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem;
}
.page-404 .numeral {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(5rem, 14vw, 9rem); color: var(--accent); line-height: 1; margin-bottom: 1rem;
}
.page-404 h1 { font-size: clamp(2rem, 5vw, 3rem); font-style: italic; margin: 0 0 1rem; font-weight: 300; }
.page-404 p { font-size: 1.1rem; color: var(--ink-muted); max-width: 460px; margin: 0 0 2rem; }
.page-404 .divider { width: 1px; height: 50px; background: var(--accent); opacity: 0.5; margin: 0 0 2rem; }
.page-404 .back {
  font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   BREATH CIRCLE - subtle breathing companion for the exercise
   ============================================================ */
.breath {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 2.6rem auto 1rem;
  user-select: none;
}
.breath-circle {
  width: 120px; height: 120px; border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  animation: tn-breath 8s ease-in-out infinite;
  will-change: transform;
}
.breath-inner {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--accent);
  opacity: 0.16;
  animation: tn-breath-inner 8s ease-in-out infinite;
  will-change: transform, opacity;
}
.breath-label {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 14px; color: var(--ink-muted);
  letter-spacing: 0.04em; min-height: 1.4em; margin: 0;
}

@keyframes tn-breath {
  0%, 100% { transform: scale(0.82); }
  25%      { transform: scale(1.10); }
  50%      { transform: scale(1.10); }
  75%      { transform: scale(0.82); }
}
@keyframes tn-breath-inner {
  0%, 100% { transform: scale(0.6); opacity: 0.10; }
  25%      { transform: scale(1.3); opacity: 0.30; }
  50%      { transform: scale(1.3); opacity: 0.30; }
  75%      { transform: scale(0.6); opacity: 0.10; }
}

@media (max-width: 600px) {
  .breath-circle { width: 96px; height: 96px; }
  .breath-inner  { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .breath-circle, .breath-inner { animation: none !important; }
  .breath-circle { transform: scale(1); }
  .breath-inner  { transform: scale(1); opacity: 0.18; }
}

/* ============================================================
   FAQ SECTION - editorial accordion
   ============================================================ */
.faq .faq-list {
  margin: 3rem 0 0;
  border-top: 1px solid var(--line-strong);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; gap: 24px;
  background: none; border: 0; padding: 1.6rem 0;
  text-align: left; cursor: pointer;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.35; letter-spacing: -0.005em;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--accent-deep); }
.faq-q em { font-style: italic; color: var(--ink-muted); }

.faq-icon {
  flex-shrink: 0; width: 16px; height: 16px;
  position: relative;
  transition: transform 0.5s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: ""; position: absolute; background: var(--accent);
  transition: opacity 0.4s var(--ease);
}
.faq-icon::before {
  top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%);
}
.faq-item.open .faq-icon       { transform: rotate(180deg); }
.faq-item.open .faq-icon::after { opacity: 0; }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.6s var(--ease);
}
.faq-a-inner {
  padding: 0 0 1.6rem;
  font-family: var(--sans); font-weight: 300;
  font-size: 0.98rem; line-height: 1.8;
  color: var(--ink-muted);
  max-width: 620px;
}
.faq-a-inner em { font-style: italic; color: var(--ink-soft); }
.faq-a-inner a {
  color: var(--accent-deep);
  border-bottom: 1px solid currentColor;
}
.faq-a-inner a:hover { color: var(--ink); }
