/* ============================================
   VITTORIA LANDER — BASE & RESET
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--white);
  background-color: var(--bg-base);
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

ul, ol {
  list-style: none;
}

/* === TIPOGRAFÍA BASE === */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(var(--text-3xl), 7vw, var(--text-hero)); }
h2 { font-size: clamp(var(--text-2xl), 4.5vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl)); }
h4 { font-size: var(--text-lg); }

p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--gray-light);
}

/* === PLACEHOLDERS DE IMAGEN === */
/* Los fondos de color representan el espacio de foto
   con las dimensiones exactas para reemplazar con tus fotos */

.img-placeholder {
  display: block;
  width: 100%;
  background-color: var(--bg-surface-2);
  border: 1px dashed rgba(175, 121, 18, 0.25);
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

/* Aspect ratios comunes del proyecto */
.ar-hero     { aspect-ratio: 16 / 9; }   /* 1440 × 810  */
.ar-portrait { aspect-ratio: 3 / 4; }    /* 600 × 800   */
.ar-square   { aspect-ratio: 1 / 1; }    /* 600 × 600   */
.ar-wide     { aspect-ratio: 4 / 3; }    /* 800 × 600   */
.ar-story    { aspect-ratio: 9 / 16; }   /* 400 × 711   */
.ar-product  { aspect-ratio: 2 / 3; }    /* 400 × 600   */

/* === SELECCIÓN DE TEXTO === */
::selection {
  background-color: rgba(175, 121, 18, 0.3);
  color: var(--gold-light);
}

/* === SCROLL BAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: var(--radius-pill);
}
