*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--font-sans);
  background: var(--crem);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.05; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* Placeholder pentru imagini/decor care se adaugă ulterior */
.ph {
  background: var(--taupe);
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.08em;
  color: rgba(28,26,24,0.4); text-transform: uppercase;
}


/* fara scroll orizontal */
html{ max-width:100%; overflow-x:clip; }
body{ max-width:100%; overflow-x:clip; }
img, video, svg{ max-width:100%; }
