/* =============================================
   ABOUT PAGE CSS – DECOTRONICS
   =============================================*/

/* ====== STORY ====== */
.about-story { background: var(--black-soft); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.story-visual { position: relative; }
.story-visual > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: brightness(0.82); transition: filter .5s; }
.story-visual:hover > img { filter: brightness(1); }
.story-quote-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--black-card); border: 1px solid var(--gold-dark);
  padding: 28px 32px; max-width: 260px;
}
.story-quote-card i { color: var(--gold); font-size: 1.5rem; margin-bottom: 12px; display: block; }
.story-quote-card p { font-family: var(--font-display); font-size: 0.95rem; font-style: italic; color: var(--white-off); line-height: 1.6; margin-bottom: 8px; }
.story-quote-card span { font-size: 0.65rem; letter-spacing: 0.15em; color: var(--grey); }
.story-text p { font-size: 0.88rem; color: var(--grey-light); line-height: 1.9; margin-bottom: 24px; }
.stats-row { display: flex; gap: 32px; align-items: center; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--black-border); }
.stat-block { text-align: center; }
.sb-num { font-family: var(--font-hero); font-size: 2.8rem; color: var(--gold-light); line-height: 1; display: block; }
.sb-label { font-size: 0.62rem; letter-spacing: 0.2em; color: var(--grey); text-transform: uppercase; display: block; margin-top: 4px; }
.stat-sep-v { width: 1px; height: 56px; background: var(--black-border); }

/* ====== GALLERY STRIP ====== */
.about-gallery { display: flex; gap: 3px; overflow: hidden; height: 240px; }
.about-gallery img { flex: 1; height: 100%; object-fit: cover; filter: grayscale(30%) brightness(0.7); transition: filter .4s, flex .4s; }
.about-gallery img:hover { flex: 2.5; filter: grayscale(0%) brightness(1); }

/* ====== VALUES ====== */
.values-section { background: var(--black); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 20px; }
.value-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  padding: 44px 36px; transition: border-color .3s, transform .3s;
}
.value-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); }
.vc-icon {
  width: 56px; height: 56px; border: 1px solid var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem; margin-bottom: 24px;
  transition: background .3s;
}
.value-card:hover .vc-icon { background: var(--gold); color: var(--black); border-color: var(--gold); }
.value-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.value-card p { font-size: 0.8rem; color: var(--grey-light); line-height: 1.8; }

/* ====== TIMELINE ====== */
.timeline-section { background: var(--black-soft); }
.timeline { position: relative; max-width: 840px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute;
  left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  gap: 0; align-items: start; margin-bottom: 56px; position: relative;
}
.tl-year {
  font-family: var(--font-hero); font-size: 2.5rem;
  color: var(--gold); line-height: 1;
  grid-column: 2; text-align: center;
  padding: 0 12px;
  position: relative;
}
.tl-year::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--black-soft);
  z-index: 1; margin-top: 8px;
}
.tl-content {
  background: var(--black-card); border: 1px solid var(--black-border);
  padding: 28px 28px; transition: border-color .3s;
}
.tl-content:hover { border-color: var(--gold-dark); }
.timeline-item:nth-child(odd) .tl-content { grid-column: 1; margin-right: 20px; }
.timeline-item:nth-child(even) .tl-content { grid-column: 3; margin-left: 20px; }
.tl-content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.tl-content p { font-size: 0.78rem; color: var(--grey-light); line-height: 1.75; }

/* ====== FOUNDER ====== */
.founder-section { background: var(--black); }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.founder-img { position: relative; }
.founder-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(20%) brightness(0.85); }
.founder-badge {
  position: absolute; bottom: 28px; left: -24px;
  background: var(--gold); color: var(--black);
  padding: 16px 22px; display: flex; align-items: center; gap: 12px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
}
.founder-badge i { font-size: 1.1rem; }
.founder-text blockquote {
  font-family: var(--font-display); font-size: 1.1rem;
  font-style: italic; color: var(--white-off); line-height: 1.8;
  border-left: 3px solid var(--gold); padding-left: 28px;
  margin: 28px 0;
}
.founder-sig { padding-top: 24px; border-top: 1px solid var(--black-border); }
.sig-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--gold-light); }
.sig-title { font-size: 0.72rem; color: var(--grey); letter-spacing: 0.12em; margin-top: 4px; }

/* ====== WHY US ====== */
.why-us-section { background: var(--black-soft); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 20px; }
.why-item {
  background: var(--black-card); padding: 44px 32px;
  border: 1px solid var(--black-border);
  transition: border-color .3s;
}
.why-item:hover { border-color: var(--gold-dark); }
.why-num {
  font-family: var(--font-hero); font-size: 4rem;
  color: var(--gold); opacity: 0.15; line-height: 1;
  margin-bottom: -10px;
}
.why-item h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.why-item p { font-size: 0.78rem; color: var(--grey-light); line-height: 1.8; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-quote-card { display: none; }
  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr; }
  .tl-year { font-size: 1.5rem; grid-column: 1; text-align: left; padding: 4px 0 0; }
  .tl-year::before { left: 24px; top: 12px; }
  .tl-content { grid-column: 2; margin: 0 0 0 16px !important; }
  .values-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .about-gallery { height: 160px; }
  .stats-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-sep-v { width: 60px; height: 1px; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
