/* ================================================================
   ABOUT PAGE v16
   ================================================================ */

.about-page { background: var(--bg); }

/* Founder / story split */
.story {
  padding: var(--section-y) 0;
}
.story__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.story__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background:
    radial-gradient(ellipse at 30% 25%, rgba(190,120,56,0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 75%, rgba(126,165,154,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(30,40,60,0.5) 0%, transparent 60%),
    conic-gradient(from 60deg at 50% 50%, #0a0f08, #1a2c12, #2a1a08, #0a1828, #1a2e10, #080d07);
}
.story__visual-tag {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-family: var(--f-display);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}
.story__visual-tag::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.story__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.08;
  margin: 14px 0 24px;
}
.story__title em {
  font-style: italic;
  background: var(--iridescent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.story__text p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 300;
}
.story__text p + p { margin-top: 16px; }

/* Timeline */
.timeline {
  padding: var(--section-y) 0;
  background: var(--bg-2);
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--iridescent-soft);
  opacity: 0.3;
}
.timeline__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.timeline__head {
  text-align: center;
  margin-bottom: 60px;
}
.timeline__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.timeline__item {
  padding: 36px 28px;
  background: var(--bg-card);
  transition: background .4s;
  position: relative;
}
.timeline__item:hover { background: var(--bg-card-2); }
.timeline__year {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 14px;
}
.timeline__item h4 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.timeline__item p {
  color: var(--text-2);
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Showrooms */
.showrooms {
  padding: var(--section-y) 0;
}
.showrooms__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.showrooms__head {
  text-align: center;
  margin-bottom: 60px;
}
.showrooms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.showroom-card {
  padding: clamp(32px, 4vw, 48px);
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  transition: border-color .4s, transform .4s;
}
.showroom-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
}
.showroom-card h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 18px;
}
.showroom-card h3 em { color: var(--gold-2); font-style: italic; }
.showroom-card p {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 14px;
}
.showroom-card strong { color: var(--text); font-weight: 500; }
.showroom-card__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* Values */
.values {
  padding: var(--section-y) 0;
  background: var(--bg-2);
  position: relative;
}
.values::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--iridescent-soft);
  opacity: 0.3;
}
.values__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.values__head {
  text-align: center;
  margin-bottom: 64px;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.value-card {
  padding: 40px 32px;
  background: var(--bg-card);
}
.value-card__num {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--gold-2);
  opacity: 0.7;
  margin-bottom: 18px;
  display: block;
}
.value-card h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.value-card p {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.75;
  font-weight: 300;
}

/* Mission / Vision two-column block */
.mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  margin-top: 24px;
}
.mv-col {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
}
.mv-col__title {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-line);
  color: var(--gold-2);
}
.mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: mv;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mv-list li {
  position: relative;
  padding-left: 38px;
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 300;
  counter-increment: mv;
}
.mv-list li::before {
  content: counter(mv, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-2);
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .story__inner { grid-template-columns: 1fr; gap: 40px; }
  .story__visual { aspect-ratio: 3/2; max-width: 520px; margin: 0 auto; }
  .timeline__list { grid-template-columns: 1fr 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .showrooms__grid { grid-template-columns: 1fr; }
  .mv-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .timeline__list,
  .values__grid { grid-template-columns: 1fr; }
}
