/* ============================================================
   HAKKIMIZDA SAYFASI ÖZEL STİLLERİ
   ============================================================ */

.about-page {
  padding: 40px 0 100px;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  display: flex;
  gap: 8px;
}
.breadcrumb a {
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.breadcrumb a:hover {
  color: var(--wood-deep);
}

/* Hero Section */
.about-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wood-deep);
  margin-bottom: 16px;
}

.about-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wood);
  box-shadow: 0 0 0 0 rgba(181, 127, 66, 0.5);
  animation: pulse 2.2s infinite;
}

.about-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-hero h1 em {
  font-style: italic;
  color: var(--wood-deep);
  font-weight: 600;
}

.about-hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
}

/* Story Section */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.story-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(27, 23, 18, 0.45);
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-img-badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: var(--cream);
  padding: 24px 32px;
  border-top-left-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.story-img-badge b {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  color: var(--wood-deep);
  line-height: 1;
}

.story-img-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-top: 6px;
}

.story-content h2 {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
}

.story-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.story-signature {
  margin-top: 36px;
  padding-left: 18px;
  border-left: 3px solid var(--wood);
}

.sig-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--ink);
  font-style: italic;
  font-weight: 600;
}

.sig-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-top: 4px;
}

/* YENİ: Vizyon & Misyon */
.vision-mission-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 100px;
}

.vm-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(27, 23, 18, 0.12);
  border-color: rgba(181, 127, 66, 0.3);
}

.vm-icon {
  width: 56px;
  height: 56px;
  background: var(--cream-2);
  color: var(--wood-deep);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.vm-card h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 16px;
}

.vm-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Stats Section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 100px;
  overflow: hidden;
}

.stat-box {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--line);
}
.stat-box:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--wood-deep);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* YENİ: Üretim ve Kalite (Zig-Zag) */
.production-section {
  margin-bottom: 100px;
}

.section-title-wrap {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-title-wrap h2 {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-title-wrap h2 em {
  font-style: italic;
  color: var(--wood-deep);
}

.section-title-wrap p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.zigzag-row.reverse .zz-content {
  order: 2;
}

.zigzag-row.reverse .zz-img {
  order: 1;
}

.zz-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(27, 23, 18, 0.2);
}

.zz-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.zigzag-row:hover .zz-img img {
  transform: scale(1.03);
}

.zz-content h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 20px;
}

.zz-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.zz-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zz-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

.zz-list li i {
  color: var(--wood-deep);
  font-size: 1.2rem;
}

/* Values Section */
.values-header {
  text-align: center;
  margin-bottom: 50px;
}

.values-header h2 {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  color: var(--ink);
  margin-bottom: 16px;
}

.values-header h2 em {
  font-style: italic;
  color: var(--wood-deep);
}

.values-header p {
  color: var(--ink-soft);
  font-size: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 100px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(27, 23, 18, 0.15);
  border-color: rgba(181, 127, 66, 0.3);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--cream-2);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 32px;
  color: var(--wood-deep);
  margin-bottom: 24px;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.4s;
}

.value-card:hover .value-icon {
  background: var(--wood-deep);
  color: var(--white);
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* YENİ: CTA Banner */
.about-cta {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--wood-deep) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 0.95rem;
  color: rgba(255, 253, 249, 0.7);
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wood-deep) !important;
  color: #fff !important;
  padding: 16px 32px;
  font-size: 1rem;
}
.cta-btn:hover {
  background: var(--wood) !important;
  transform: translateY(-2px);
}

/* Animasyon Sınıfları */
.reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 992px) {
  .about-page {
    padding: 30px 0 70px;
  }

  .breadcrumb {
    margin-bottom: 28px;
    font-size: 0.8rem;
  }

  .about-hero {
    margin: 0 auto 50px;
  }

  .about-hero h1 {
    font-size: 2.3rem;
  }

  .about-hero-sub {
    font-size: 0.98rem;
  }

  .about-story,
  .vision-mission-section,
  .zigzag-row,
  .zigzag-row.reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .zigzag-row.reverse .zz-content,
  .zigzag-row .zz-content {
    order: 2;
  }

  .zigzag-row.reverse .zz-img,
  .zigzag-row .zz-img {
    order: 1;
  }

  .about-story,
  .vision-mission-section,
  .about-stats,
  .production-section,
  .values-grid {
    margin-bottom: 70px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
     MOBILE
     ============================================================ */

@media (max-width: 768px) {
  .about-page {
    padding: 20px 0 55px;
  }

  .breadcrumb {
    margin-bottom: 22px;
    font-size: 0.75rem;
    gap: 6px;
    flex-wrap: wrap;
  }

  .about-hero {
    margin: 0 auto 36px;
  }

  .about-eyebrow {
    margin-bottom: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .about-hero h1 {
    font-size: 1.95rem;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .about-hero-sub {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .about-story {
    gap: 28px;
    margin-bottom: 55px;
  }

  .story-img-wrap {
    border-radius: 18px;
  }

  .story-img-wrap img {
    aspect-ratio: 16/10;
  }

  .story-img-badge {
    padding: 14px 18px;
  }

  .story-img-badge b {
    font-size: 1.6rem;
  }

  .story-img-badge span {
    font-size: 0.65rem;
  }

  .story-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .story-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .story-signature {
    margin-top: 24px;
  }

  .vision-mission-section {
    gap: 18px;
    margin-bottom: 55px;
  }

  .vm-card {
    padding: 24px;
  }

  .vm-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    margin-bottom: 14px;
  }

  .vm-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }

  .vm-card p {
    font-size: 0.88rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 55px;
  }

  .stat-box {
    padding: 24px 12px;
  }

  .stat-num {
    font-size: 2rem;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .production-section {
    margin-bottom: 55px;
  }

  .section-title-wrap {
    margin-bottom: 36px;
  }

  .section-title-wrap h2 {
    font-size: 2rem;
  }

  .section-title-wrap p {
    font-size: 0.9rem;
  }

  .zigzag-row {
    gap: 24px;
    margin-bottom: 40px;
  }

  .zz-content h3 {
    font-size: 1.55rem;
    margin-bottom: 14px;
  }

  .zz-content p {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .zz-list li {
    font-size: 0.88rem;
  }

  .values-header {
    margin-bottom: 30px;
  }

  .values-header h2 {
    font-size: 2rem;
  }

  .values-header p {
    font-size: 0.9rem;
  }

  .value-icon {
    width: 58px;
    height: 58px;
    font-size: 26px;
    margin-bottom: 16px;
  }

  .value-card h3 {
    font-size: 1.1rem;
  }

  .value-card p {
    font-size: 0.88rem;
  }

  .about-cta {
    padding: 36px 22px;
  }

  .cta-inner h2 {
    font-size: 1.75rem;
  }

  .cta-inner p {
    font-size: 0.9rem;
    margin-bottom: 22px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
  }

  .values-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 8px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    margin-right: -16px;
    padding-right: 16px;
  }

  .values-grid::-webkit-scrollbar {
    display: none;
  }

  .value-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    padding: 24px 20px;
  }
}

/* ============================================================
     SMALL MOBILE
     ============================================================ */

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.7rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box {
    padding: 20px 10px;
  }

  .stat-num {
    font-size: 1.75rem;
  }

  .story-content h2,
  .section-title-wrap h2,
  .values-header h2,
  .cta-inner h2 {
    font-size: 1.55rem;
  }
}
