/* ============================================================
   BASE — La Clinique Des Femmes
   Light reset + base element styling so any page that links
   styles.css inherits the brand voice. Utility helpers kept
   minimal and brand-specific.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
  color: var(--text-strong);
  letter-spacing: var(--ls-tight);
}
h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--marine-900); }

strong { font-weight: var(--fw-semibold); color: var(--text-strong); }

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

::selection { background: var(--azur-200); color: var(--marine-900); }

/* ---- Brand helpers ---- */
.lcdf-overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--brand-accent-deep);
}
.lcdf-serif {
  font-family: var(--font-serif);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-normal);
}
.lcdf-display {
  font-family: var(--font-display);
  letter-spacing: var(--ls-wide);
}
