/* ============================================
   DR. AXEL WOITOWITZ – STYLES
   Organic Minimalism, adapted for Coaching
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --cream:      #FFF8F3;
  --earth:      #3E3A35;
  --terracotta: #B8733E;
  --sage:       #7A9B85;
  --border:     #E8DFD5;
  --muted:      #8C847C;
  --light-bg:   #F7EFE7;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--earth);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.1;
}

/* ── Layout Utility ────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Header ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--cream);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--earth);
  text-decoration: none;
}

.logo span {
  color: var(--terracotta);
}

/* ── Hero ──────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
}

.hero .container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--sage);
}

.hero-title {
  font-size: clamp(28px, 8vw, 62px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--earth);
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-body {
  font-size: 18px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.8;
}

/* ── CTA Button (Arch) ─────────────────────── */
.btn-arch {
  display: inline-block;
  padding: 18px 48px;
  background-color: var(--earth);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 300ms ease-out, transform 300ms ease-out;
  align-self: flex-start;
}

.btn-arch:hover {
  background-color: var(--terracotta);
  transform: translateY(-4px);
}

/* ── Hero Image ────────────────────────────── */
.hero-image-wrap {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 60px rgba(62, 58, 53, 0.12);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 1000ms ease-in-out;
}

.hero-image-wrap:hover img {
  transform: scale(1.05);
}

/* ── Divider ───────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Text Section ──────────────────────────── */
.text-section {
  padding: 100px 0;
}

.text-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-inner {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.text-section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--sage);
  margin-bottom: 8px;
}

.text-inner p {
  font-size: 18px;
  color: var(--earth);
  line-height: 1.85;
}

.text-inner p.muted {
  color: var(--muted);
}

.bio-block {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--sage);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  line-height: 1.7;
}

/* ── Footer ────────────────────────────────── */
.site-footer {
  background-color: var(--earth);
  color: #E8DFD5;
  padding: 64px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(232, 223, 213, 0.2);
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: #E8DFD5;
  margin-bottom: 12px;
}

.footer-address {
  font-size: 14px;
  font-weight: 300;
  color: rgba(232, 223, 213, 0.7);
  line-height: 1.8;
}

.footer-address a {
  color: rgba(232, 223, 213, 0.7);
  text-decoration: none;
  transition: color 300ms;
}

.footer-address a:hover {
  color: var(--terracotta);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.footer-nav a {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(232, 223, 213, 0.7);
  text-decoration: none;
  transition: color 300ms;
}

.footer-nav a:hover {
  color: var(--terracotta);
}

.footer-bottom {
  padding-top: 28px;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(232, 223, 213, 0.4);
}

/* ── Impressum Page ────────────────────────── */
.impressum-section {
  padding: 80px 0 120px;
}

.impressum-section .container {
  max-width: 760px;
}

.impressum-section h1 {
  font-size: 48px;
  margin-bottom: 48px;
}

.impressum-section h2 {
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: var(--sage);
  margin-top: 40px;
  margin-bottom: 12px;
}

.impressum-section p,
.impressum-section address {
  font-size: 16px;
  font-style: normal;
  line-height: 1.8;
  color: var(--earth);
}

.impressum-section a {
  color: var(--terracotta);
  text-decoration: none;
}

.impressum-section a:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 60px;
  transition: color 300ms;
}

.back-link:hover {
  color: var(--terracotta);
}

.back-link::before {
  content: '←';
  font-size: 14px;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-image-wrap {
    aspect-ratio: 3 / 2;
    max-height: 420px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-nav {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 24px;
  }

  .hero {
    padding: 60px 0 60px;
  }

  .hero-body {
    font-size: 16px;
  }

  .text-section {
    padding: 72px 0;
  }

  .text-inner p {
    font-size: 16px;
  }

  .impressum-section h1 {
    font-size: 36px;
  }
}
