/*
Theme Name: Dr. Alon Liran MD
Theme URI: https://liranmd.com
Description: Custom WordPress theme for Dr. Alon Liran – Plastic Surgeon. Olive monochrome palette, RTL Hebrew, ACF-powered treatment pages.
Version: 1.0.0
Author: Design by Claude / Development
Text Domain: liran-md
*/

/* ============================================================
   DESIGN TOKENS — match styles.css in the HTML prototype
   ============================================================ */
:root {
  --olive:       #6E6F49;
  --olive-deep:  #525433;
  --olive-ink:   #2F311C;
  --bg:          #F5F4EC;
  --surface:     #EEEDDB;
  --sand:        #E4E2D0;
  --sand-deep:   #D6D4C2;
  --ink:         #2B2D1A;
  --muted:       #5A5A45;
  --cream:       #F5F4EC;
  --cream-muted: rgba(245,244,236,.72);
  --line:        rgba(110,111,73,.18);
  --line-strong: rgba(110,111,73,.35);
  --lime:        #9CF85C;

  --ff-display:  'Heebo', 'Noto Sans Hebrew', sans-serif;
  --ff-body:     'Noto Sans Hebrew', 'Heebo', sans-serif;
  --ff-latin:    'Marcellus', Georgia, serif;

  --wrap:        1320px;
  --radius:      8px;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { direction: rtl; font-size: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
