/* ============================================================
   PARCO DEI PINI — Reset & Base
   ============================================================ */

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 11vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.display-l {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-m {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-l {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
}

.body-m {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--soft);
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--sp-m);
}

.section    { padding: var(--sp-xl) 0; }
.section-sm { padding: var(--sp-l) 0; }

.divider {
  display: flex;
  align-items: center;
  gap: var(--sp-m);
  margin: var(--sp-m) 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sand);
}
.divider-symbol {
  color: var(--gold);
  font-size: 1rem;
}
