/* ═══════════════════════════════════════════════
   CIRO — Landing Page Styles
   Minimal, dark, mysterious
   ═══════════════════════════════════════════════ */

.landing {
  min-height: 100vh;
  background: var(--landing-bg);
  color: rgba(212, 207, 196, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Subtle paper grain texture */
.landing .texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(180, 170, 150, 0.012) 2px,
      rgba(180, 170, 150, 0.012) 4px
    );
  pointer-events: none;
}

/* "Beatriz Cabur presenta" */
.presenta {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(210, 204, 192, 0.75);
  margin-bottom: 2.5rem;
  animation: fadeUp 1.2s ease both 0.3s;
  opacity: 0;
}

/* Main title */
.landing h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--landing-text);
  text-transform: uppercase;
  text-align: center;
  padding: 0 1rem;
  animation: fadeUp 1.2s ease both 0.6s;
  opacity: 0;
}

/* Subtitle */
.landing .sub {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(200, 192, 180, 0.75);
  margin-top: 0.75rem;
  margin-bottom: 5rem;
  animation: fadeUp 1.2s ease both 0.9s;
  opacity: 0;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(200, 192, 180, 0.4);
  animation: breathe 3s ease-in-out infinite, fadeUp 1.2s ease both 1.4s;
  opacity: 0;
  text-decoration: none;
  cursor: pointer;
}

/* ── Navigation Section ── */
.sections-nav {
  background: var(--landing-bg);
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 48px 100px;
}

.nav-ornament {
  text-align: center;
  color: rgba(180, 170, 150, 0.15);
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.875rem;
  padding: 3rem 0 3.5rem;
}

/* Section links */
.section-link {
  display: flex;
  gap: 2.25rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(180, 170, 150, 0.1);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.section-link:last-child {
  border-bottom: 1px solid rgba(180, 170, 150, 0.1);
}

.section-link:hover {
  padding-left: 0.75rem;
}

/* Focus visible for keyboard navigation */
.section-link:focus-visible {
  outline: 2px solid rgba(200, 192, 180, 0.6);
  outline-offset: 4px;
  border-radius: 2px;
}

.section-link .num {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(200, 192, 180, 0.5);
  min-width: 1.5rem;
  padding-top: 0.375rem;
}

.section-link .s-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: rgba(220, 214, 202, 0.88);
  margin-bottom: 0.625rem;
  transition: color 0.3s;
}

.section-link:hover .s-title {
  color: #ede8de;
}

.section-link .s-desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(200, 192, 180, 0.7);
  max-width: 30rem;
}

.section-link .s-tag {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1rem;
  display: inline-block;
  font-weight: 500;
}

/* Distinct colors for each world */
.tag-flaminia { color: #c46464; }   /* rosso — ombra, istituzione */
.tag-ciro     { color: #b09870; }   /* ambra / terra — movimento, viaggio */
.tag-ettore   { color: #d4c47a; }   /* oro / luce — santità, chiesa */

.section-link .handnote {
  font-family: var(--font-hand-flaminia);
  font-size: 1.75rem;
  color: rgba(200, 110, 110, 0.7);
  position: absolute;
  right: 0;
  top: 3rem;
  transform: rotate(-2deg);
  transition: color 0.3s;
}

.section-link:hover .handnote {
  color: rgba(200, 110, 110, 0.9);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .landing h1 {
    font-size: clamp(2rem, 9vw, 3.5rem);
    letter-spacing: 0.1em;
  }

  .presenta {
    font-size: 0.9375rem;
    margin-bottom: 1.75rem;
    letter-spacing: 0.15em;
  }

  .sections-nav {
    padding: 1.5rem 1.5rem 3.75rem;
  }

  .section-link {
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem 0;
  }

  .section-link .s-title {
    font-size: 1.75rem;
  }

  .section-link .s-desc {
    font-size: 1rem;
  }

  .section-link .s-tag {
    font-size: 0.875rem;
  }

  .section-link .handnote {
    position: static;
    transform: rotate(-1deg);
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
}

/* ═══ ISTRUZIONI LINK ═══ */
.istruzioni-link {
  background: none;
  border: none;
  border-top: 1px solid rgba(180, 170, 150, 0.1);
  text-align: left;
  width: 100%;
}

.istruzioni-link .istruzioni-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(220, 214, 202, 0.88);
  transition: color 0.3s;
}

.istruzioni-link:hover .istruzioni-title {
  color: #ede8de;
}

.istruzioni-link .s-desc {
  font-size: 1.0625rem;
  color: rgba(200, 192, 180, 0.5);
}

/* Istruzioni modal styles → global.css */
