/* ============================================================
   GRACE VITAL — Marken-Fundament (Tokens, Typo, Bausteine)
   Praxis für Immuntherapie & Ästhetik · Nieder-Olm
   ============================================================ */

:root {
  /* Farbwelt: kühl-neutral mit warmem Sand/Gold-Akzent */
  --bg:          #f4f1ec;   /* warmes Off-White */
  --bg-2:        #eae4da;   /* etwas tieferer Sandton */
  --surface:     #ffffff;
  --ink:         #283331;   /* tiefes, kühles Anthrazit-Grün */
  --ink-soft:    #515b57;
  --muted:       #7c857f;
  --line:        #e5dfd4;
  --line-soft:   #efeae1;

  --primary:      #3c5a5f;  /* Teal-Schiefer */
  --primary-deep: #243f3f;  /* dunkle Sektionen */
  --primary-tint: #e7ecea;

  --accent:       #b18a5c;  /* warmes Sand / Gold */
  --accent-deep:  #97744a;
  --accent-soft:  #e9dcc6;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --maxw: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- Image placeholder (vom Nutzer später zu ersetzen) ---- */
.ph {
  position: relative;
  background-color: #e9e2d6;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.45) 0 1px, transparent 1px 11px),
    repeating-linear-gradient(-45deg, rgba(150,135,108,.10) 0 1px, transparent 1px 11px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: var(--accent-deep);
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(255,255,255,.82);
  padding: 7px 13px; border-radius: 2px;
  color: #8a7253;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  text-align: center; line-height: 1.4;
}

/* tiny diamond divider */
.diamond { width: 7px; height: 7px; background: var(--accent); transform: rotate(45deg); display: inline-block; }
