/* ============================================
   Anya Schmanns — Emotions- & Stressregulation
   Design tokens
   ============================================ */
:root {
  --cream: #f7f1e7;
  --cream-soft: #f1e9db;
  --white: #ffffff;
  --ink: #1a1a17;
  --ink-soft: #4a4944;
  --sage: #6f7b74;
  --sage-dark: #545e58;
  --sage-pale: #e4e8e4;
  --taupe: #c7a88f;
  --taupe-soft: #efe2d4;
  --max-w: 1180px;
  --radius: 4px;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

a {
  color: inherit;
}

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

.script {
  font-family: "Beau Rivage", cursive;
  font-weight: 400;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 241, 231, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(26, 26, 23, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.wordmark {
  font-family: "Fraunces", serif;
  font-size: 21px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li + li {
  margin-left: 32px;
}

.site-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 3px;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--sage);
  transition: right 0.25s ease;
}

.site-nav a:hover::after {
  right: 0;
}

@media (max-width: 720px) {
  .site-nav {
    display: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26, 26, 23, 0.25);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(26, 26, 23, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 640px;
}

.hero-copy {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  margin-top: 18px;
}

.hero-divider {
  width: 56px;
  height: 2px;
  background: var(--taupe);
  margin: 28px 0;
  border: none;
}

.hero-copy p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 30em;
  margin: 0 0 34px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-dark);
}

.hero-tags span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--taupe);
  margin-right: 10px;
  vertical-align: middle;
}

.hero-tags span:first-child::before {
  display: none;
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 480px;
}

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

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    padding: 56px 0 40px;
  }
  .hero-image {
    min-height: 320px;
    order: -1;
  }
}

/* ---------- Breath divider (signature element) ---------- */
.breath-divider {
  display: block;
  width: 100%;
  height: 64px;
}

.breath-divider path {
  fill: none;
  stroke: var(--taupe);
  stroke-width: 1.6;
}

/* ---------- Mirror section: Kennst du das? / Mein Ansatz ---------- */
.mirror {
  padding: 96px 0 104px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-top: 10px;
}

.mirror-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
}

.mirror-col-title {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  margin-bottom: 34px;
}

.mirror-divider {
  background: linear-gradient(to bottom, transparent, rgba(26, 26, 23, 0.14) 12%, rgba(26, 26, 23, 0.14) 88%, transparent);
}

.item-row {
  display: flex;
  gap: 18px;
  margin-bottom: 34px;
}

.item-row:last-child {
  margin-bottom: 0;
}

.icon-badge {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

.col-problem .icon-badge {
  background: var(--sage-pale);
}

.col-problem .icon-badge svg {
  stroke: var(--sage-dark);
}

.col-approach .icon-badge {
  background: var(--sage);
}

.col-approach .icon-badge svg {
  stroke: var(--white);
}

.icon-badge-photo {
  background: none;
  width: 46px;
  height: 46px;
}

.icon-badge-photo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: block;
}

.item-quote {
  display: block;
  font-size: 1.65rem;
  color: var(--sage-dark);
  margin-bottom: 2px;
  line-height: 1.2;
}

.item-title {
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}

.item-example {
  color: var(--ink-soft);
  font-size: 15px;
}

.col-approach .item-title {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13.5px;
  color: var(--sage-dark);
  margin-bottom: 6px;
}

.col-approach .item-desc {
  color: var(--ink-soft);
  font-size: 15.5px;
}

@media (max-width: 780px) {
  .mirror-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .mirror-divider {
    display: none;
  }
}

/* ---------- About ---------- */
.about {
  background: var(--white);
  border-top: 1px solid rgba(26, 26, 23, 0.08);
  border-bottom: 1px solid rgba(26, 26, 23, 0.08);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-photo {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

.about-photo img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--taupe-soft);
}

.about-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  margin-bottom: 22px;
}

.about-copy p {
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.about-copy p:last-of-type {
  margin-bottom: 0;
}

.about-copy strong {
  color: var(--ink);
}

.pull-line {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  margin: 28px 0 !important;
  border-left: 2px solid var(--taupe);
  padding-left: 20px;
}

@media (max-width: 780px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }
  .about-photo {
    width: 180px;
    height: 180px;
  }
  .about-photo img {
    width: 180px;
    height: 180px;
  }
}

/* ---------- Contact / closing ---------- */
.contact {
  padding: 104px 0 96px;
  text-align: center;
}

.contact .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  max-width: 16em;
  margin: 0 auto;
}

.contact .lede {
  max-width: 34em;
  margin: 22px auto 40px;
  color: var(--ink-soft);
  font-size: 18px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.contact-facts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
}

.contact-facts > * {
  margin: 0 20px;
}

.contact-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-soft);
}

.contact-fact svg {
  width: 18px;
  height: 18px;
  stroke: var(--sage-dark);
  flex: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(247, 241, 231, 0.72);
  padding: 40px 0;
  font-size: 14px;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-left: 22px;
}

.footer-links a {
  color: rgba(247, 241, 231, 0.85);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ---------- Legal pages ---------- */
.legal-main {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 32px 120px;
}

.legal-main h1 {
  font-size: 2.2rem;
  margin-bottom: 36px;
}

.legal-main h2 {
  font-size: 1.25rem;
  margin: 40px 0 14px;
}

.legal-main h3 {
  font-size: 1.05rem;
  margin: 28px 0 10px;
}

.legal-main p, .legal-main li {
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.legal-main a {
  color: var(--sage-dark);
}

.back-link {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-dark);
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}
