/* ============================================================
   ABOUT.CSS — stili specifici SOLO della pagina about
   ============================================================ */

/* ─── HERO ─── */
.hero {
  padding: 160px 60px 80px;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-label {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--gold);
  font-weight: 550;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.01em;
  opacity: 0;
  animation: fadeUp .8s .4s forwards;
}
.hero-title strong { font-weight: 600; color: var(--white); }
.hero-title em     { font-style: italic; color: var(--gold); }
.hero-divider {
  width: 160px; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  margin: 32px auto 0;
  opacity: 0;
  animation: fadeUp .8s .6s forwards;
}
.hero-subtitle {
  margin-top: 28px;
  font-size: 1rem;
  letter-spacing: .12em;
  color: var(--grey);
  font-weight: 500;
  max-width: 420px;
  margin-left: auto; margin-right: auto;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp .8s .75s forwards;
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
  opacity: 0;
  animation: fadeUp .8s 1.3s forwards;
}
.scroll-indicator span {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  letter-spacing: .45em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  opacity: .8;
}
.scroll-curtain {
  position: relative;
  width: 28px; height: 44px;
  border: 1px solid rgba(201,168,76,0.35);
}
.scroll-curtain::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--gold);
  animation: curtainRise 2s ease-in-out infinite;
}
.scroll-curtain::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--black);
  animation: dotFloat 2s ease-in-out infinite;
}
.scroll-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.scroll-lines i {
  display: block;
  width: 1px; height: 14px;
  background: var(--gold);
  transform-origin: top;
  animation: lineFade 2s ease-in-out infinite;
}
.scroll-lines i:nth-child(2) { animation-delay: .18s; opacity: .6; }
.scroll-lines i:nth-child(3) { animation-delay: .36s; opacity: .3; }

/* ─── SHARED ─── */
.border-top { border-top: 1px solid rgba(201,168,76,0.15); }

.section-label {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--gold);
  font-weight: 550;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.section-title strong { font-weight: 600; color: var(--white); }
.section-title em     { font-style: italic; color: var(--gold); }

/* ─── STORY ─── */
.story {
  padding: 110px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.story-left p {
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.95;
  color: var(--grey);
  margin-top: 22px;
}
.story-left p + p { margin-top: 14px; }
.story-right {
  text-align: center;
  padding: 56px 44px;
  border: 1px solid rgba(201,168,76,0.18);
}
.big-quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 80px;
  line-height: 0.6;
  color: rgba(201,168,76,0.15);
  font-style: italic;
  display: block;
  margin-bottom: 24px;
}
.pull-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: var(--white);
}
.pull-quote-attr {
  font-size: .65rem;
  letter-spacing: .3em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-top: 24px;
}

/* ─── VALUES ─── */
.values-wrap { padding: 110px 60px; text-align: center; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 56px auto 0;
  border: 1px solid rgba(201,168,76,0.15);
}
.value-card {
  padding: 52px 40px;
  border-right: 1px solid rgba(201,168,76,0.15);
  transition: background 0.4s;
  position: relative;
  text-align: left;
}
.value-card:last-child { border-right: none; }
.value-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.value-card:hover::after { opacity: 1; }
.value-card:hover { background: rgba(201,168,76,0.04); }
.value-num {
  font-size: .65rem;
  letter-spacing: .28em;
  color: rgba(201,168,76,0.4);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}
.value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 14px;
  color: var(--white);
  line-height: 1;
}
.value-card p {
  font-size: .88rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--grey);
  letter-spacing: .04em;
}

/* ─── CTA ─── */
.cta-wrap { padding: 130px 60px; text-align: center; }
.cta-body {
  font-size: 1rem;
  letter-spacing: .12em;
  color: var(--grey);
  font-weight: 500;
  max-width: 420px;
  margin: 20px auto 44px;
  line-height: 1.8;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── FOOTER ─── */
.footer-copy {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--grey);
}

/* ─── KEYFRAMES ─── */
@keyframes curtainRise {
  0%   { height: 0%;   opacity: 0; }
  15%  { opacity: 1; }
  50%  { height: 100%; opacity: 1; }
  85%  { opacity: 1; }
  100% { height: 0%;   opacity: 0; }
}
@keyframes dotFloat {
  0%   { bottom: 4px;  opacity: 0; }
  15%  { opacity: 1; }
  50%  { bottom: calc(100% - 8px); opacity: 1; }
  85%  { opacity: 1; }
  100% { bottom: 4px;  opacity: 0; }
}
@keyframes lineFade {
  0%, 100% { transform: scaleY(0); opacity: 0; }
  40%, 60%  { transform: scaleY(1); opacity: 1; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .story { padding: 80px 40px; }
  .values-wrap { padding: 80px 40px; }
  .cta-wrap { padding: 80px 40px; }
}
@media (max-width: 900px) {
  .hero { padding: 160px 24px 60px; }
  .scroll-indicator { display: flex; }
  .story { grid-template-columns: 1fr; gap: 36px; padding: 72px 24px; text-align: center; }
  .story-left { text-align: center; }
  .values-wrap { padding: 72px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); text-align: center; }
  .value-card:last-child { border-bottom: none; }
  .cta-wrap { padding: 72px 24px; }
}
@media (max-width: 480px) {
  .hero { padding: 120px 20px 60px; }
  .story { padding: 60px 20px; }
  .story-right { padding: 32px 20px; }
  .values-wrap { padding: 60px 20px; }
  .value-card { padding: 36px 20px; }
  .cta-wrap { padding: 60px 20px; }
}