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

  html, body { height: 100%; }

  body {
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    color: #fdfbf8;
    overflow: hidden;
  }

  /* ============ SFONDO FULL BLEED ============
     Due foto responsive:
     - valentini-hero-landscape.jpg → schermi orizzontali (desktop)
     - valentini-hero-portrait.jpg  → schermi verticali (mobile)
     Se le foto non vengono trovate, resta visibile l'illustrazione
     SVG delle dune come fallback. */
  .bg {
    position: fixed;
    inset: 0;
    z-index: -3;
  }
  .bg svg { width: 100%; height: 100%; display: block; }

  .bg-photo {
    position: fixed;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Zoom lentissimo, effetto "opera d'arte digitale" */
    animation: slowZoom 30s ease-in-out infinite alternate;
  }
  @keyframes slowZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.07); }
  }
  /* v1.2: la modella è a SINISTRA nella foto orizzontale:
     ancoriamo l'inquadratura a sinistra e in alto */
  .bg-photo.landscape { object-position: 30% 28%; display: block; }
  .bg-photo.portrait  { object-position: center 25%; display: none; }

  @media (orientation: portrait) {
    .bg-photo.landscape { display: none; }
    .bg-photo.portrait  { display: block; }
  }

  /* ============ OVERLAY SCURO 50% ============
     Velo nero uniforme, senza sfumature. */
  .overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
  }

  /* ============ CONTENUTO CENTRATO ============ */
  .content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    animation: fadeIn 1.8s ease both;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ============ WORDMARK — alto a sinistra ============
     Riprende il lettering del logo Instagram: sans-serif pulito
     (Inter, il più vicino all'originale), maiuscolo spaziato,
     con "1972" centrato sotto. Posizionato all'altezza del viso
     della modella. */
  .wordmark {
    position: fixed;
    top: 12.5vh;
    right: 7vw;  /* v1.2: speculare — soggetto a sinistra, scritta a destra */
    z-index: 5;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #f2ede4;                     /* bianco sporco */
    animation: fadeIn 1.8s ease both;
  }
  .wordmark .name {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: clamp(1.95rem, 3.64vw, 3.12rem);
    letter-spacing: 0.24em;
    margin-right: -0.24em; /* compensazione ottica ultimo carattere */
  }
  .wordmark .year {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(0.91rem, 1.56vw, 1.3rem);
    letter-spacing: 0.6em;
    margin-right: -0.6em;
    margin-top: 6px;
  }

  /* Filetto decorativo color sabbia */
  .rule {
    width: 64px;
    height: 1px;
    background: rgba(232, 216, 197, 0.75);
    margin: 4.5vh auto;
  }

  /* Tagline — corsivo, più piccola */
  .tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 0.06em;
    color: rgba(250, 244, 236, 0.9);
    max-width: 48ch;
  }
  .tagline-en {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.85rem, 1.6vw, 1.05rem);
    letter-spacing: 0.06em;
    color: rgba(250, 244, 236, 0.7);
    max-width: 52ch;
    margin-top: 14px;
  }

  /* Invito a seguire il profilo — solo logo Instagram */
  .follow {
    margin-top: 6vh;
    display: inline-flex;
    opacity: 0.9;
    transition: opacity .25s, transform .25s;
  }
  .follow:hover { opacity: 1; transform: translateY(-2px); }
  .follow svg {
    width: 46px;
    height: 46px;
    stroke: #fdfbf8;
    stroke-width: 1.3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ============ COPYRIGHT — basso, centro ============ */
  .copyright {
    position: fixed;
    bottom: 26px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: #f2ede4;                    /* bianco sporco */
    opacity: 0.85;
  }

  @media (max-height: 640px) {
    .wordmark { top: 8vh; }
    .copyright { bottom: 16px; }
  }
