/* ============ STORY ============ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-nums {
  display: flex;
  gap: 36px;
  margin-top: 36px;
}

.s-num { text-align: center; }

.sn-v {
  display: block;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
}

.sn-l {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}

.story-lead {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
  line-height: 1.5;
}

.story-right p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

/* ============ ABOUT PHOTO STRIP ============ */
.about-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  height: 460px;
  background: var(--black);
}

.about-photo-item {
  position: relative;
  overflow: hidden;
}

.about-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.85);
  transition: transform 0.7s ease, filter 0.4s ease;
}

.about-photo-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(1.1);
}

.about-photo-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  transition: color 0.3s;
}

.about-photo-item:hover .about-photo-label {
  color: var(--gold);
}

/* ============ QUOTE ============ */
.quote-section {
  position: relative;
  padding: 130px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.quote-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.quote-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 120px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.5;
  margin-bottom: 20px;
}

blockquote {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.5px;
}

blockquote em { font-style: italic; color: var(--gold); }

cite {
  display: block;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  font-style: normal;
}

/* ============ MISSION VISION ============ */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.mv-item {
  background: var(--dark2);
  padding: 52px 40px;
  transition: var(--transition);
}

.mv-item:hover { background: var(--dark3); }

.mv-num {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -3px;
}

.mv-item h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
}

.mv-item p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.9;
}

/* ============ SÜREÇ ============ */
.proc-header { margin-bottom: 70px; }

.proc-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.proc-step {
  flex: 1;
  padding: 0 28px;
  border-left: 1px solid var(--border);
}

.proc-step:first-child { padding-left: 0; border-left: none; }

.proc-line {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: var(--border);
  margin-top: 20px;
  align-self: flex-start;
}

.proc-n {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.proc-step h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.proc-step p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.9;
}

/* ============ ABOUT CTA ============ */
.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-photo-strip { height: 320px; }
  .mv-grid { grid-template-columns: 1fr; }
  .proc-steps { flex-direction: column; gap: 36px; }
  .proc-step { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 28px; }
  .proc-step:first-child { border-top: none; padding-top: 0; }
  .proc-line { display: none; }
}

@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .about-cta { flex-direction: column; }
}

@media (max-width: 600px) {
  .about-photo-strip { grid-template-columns: 1fr; height: auto; }
  .about-photo-item { height: 220px; }
  .story-nums { gap: 20px; }
  .mv-grid { grid-template-columns: 1fr; }
}
