/* ============================================================
   base.css — element defaults (SMACSS: Base)
   css_reset = none → only box-sizing normalisation
   Typography = luxury-didone (Cormorant Garamond + Montserrat)
   ============================================================ */
* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.14;
  color: var(--color-text);
  margin: 0 0 var(--space-sm);
}
h1 { font-size: 4rem; letter-spacing: -0.01em; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.2rem; }

p  { font-size: 1rem; line-height: 1.75; margin: 0 0 var(--space-sm); }

a { color: var(--color-accent-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }

img, svg { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 var(--space-sm); padding-left: 1.2em; }

blockquote {
  margin: var(--space-md) 0;
  padding: var(--space-sm) var(--space-md);
  border-left: 3px solid var(--color-accent-soft);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-text-muted);
}

figure { margin: 0; }

:focus-visible { outline: 3px solid var(--color-accent-soft); outline-offset: 2px; }

@media (max-width: 768px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.35rem; }
}
