/* ════════════════════════
   ABOUT PAGE STYLES
════════════════════════ */

/* ─── PAGE HERO ─── */
.page-hero { background: var(--section-alt,#F5EFE3); padding: 120px 6% 80px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; bottom:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent); }
.ph-label { font-family:var(--font-ui); font-size:0.56rem; letter-spacing:4px; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.ph-title { font-family:var(--font-display); font-size:clamp(2.4rem,4vw,4rem); font-weight:400; color:var(--text-dark); line-height:1.1; }
.ph-title em { font-style:italic; color:var(--gold); }
.ph-desc { font-size:0.92rem; line-height:1.9; color:var(--text-mid); max-width:520px; margin-top:20px; font-weight:300; }

/* ─── STORY SECTION ─── */
.story-section { padding: 100px 6%; background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img-wrap { position: relative; padding-bottom: 20px; padding-right: 20px; }
.story-img-wrap img { width: 100%; height: 520px; object-fit: cover; }
.story-img-wrap::after { content: ''; position: absolute; bottom: 0; right: 0; width: calc(100% - 20px); height: calc(100% - 20px); border: 1px solid var(--border); z-index: -1; }
.story-badge { position: absolute; bottom: 40px; left: -20px; background: var(--gold); color: #fff; padding: 20px 24px; font-family: var(--font-ui); font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; box-shadow: var(--shadow-md); }
.story-badge strong { display: block; font-size: 1.8rem; font-family: var(--font-display); line-height: 1; margin-bottom: 4px; font-weight: 600; }
.story-text blockquote { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; color: var(--text-dark); line-height: 1.7; border-left: 3px solid var(--gold); padding-left: 24px; margin: 30px 0; }

/* ─── VALUES ─── */
.values-section { padding: 100px 6%; background: var(--section-alt,#F5EFE3); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.val-card { background: #fff; border: 1px solid var(--border); padding: 36px 28px; position: relative; overflow: hidden; transition: all 0.35s; }
.val-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.val-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.val-card:hover::before { transform: scaleX(1); }
.val-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 18px; }
.val-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.val-desc { font-size: 0.82rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; }

/* ─── TIMELINE ─── */
.timeline-section { padding: 100px 6%; background: var(--cream); }
.timeline {
  margin-top: 60px;
  position: relative;
  max-width: 800px;
}
/* Vertical line anchored to the dot column */
.timeline::before {
  content: '';
  position: absolute;
  left: 119px; /* year-col (90px) + gap (14px) + dot-center (15px) */
  top: 8px; bottom: 8px;
  width: 1px;
  background: var(--border);
}

.tl-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
}
.tl-item:last-child { margin-bottom: 0; }

/* Year label – fixed width, right-aligned */
.tl-year {
  flex: 0 0 90px;
  text-align: right;
  padding-right: 18px;
  padding-top: 2px;
  font-family: var(--font-ui);
  font-size: 0.6rem; letter-spacing: 3px;
  color: var(--gold); font-weight: 600;
  line-height: 1.8;
}

/* Dot column */
.tl-dot-wrap {
  flex: 0 0 30px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  position: relative; z-index: 1;
}
.tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
  transition: transform 0.3s;
}
.tl-item:hover .tl-dot { transform: scale(1.3); }

/* Content */
.tl-content {
  flex: 1;
  padding-left: 22px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--border);
  margin-left: 14px;
  transition: all 0.3s;
}
.tl-content:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.tl-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.tl-desc  { font-size: 0.82rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; }

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) { .story-grid { grid-template-columns: 1fr; gap: 50px; } .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:768px)  { .values-grid { grid-template-columns: 1fr; } }
@media (max-width:640px)  { .timeline::before { left: 56px; } .tl-year { flex: 0 0 44px; font-size: 0.5rem; padding-right: 8px; letter-spacing:1px; } }
