/* ═══════════════════════════════════════════════════════════════
   ABOUT — about page styles
   ═══════════════════════════════════════════════════════════════ */

/* ── Container override for about page ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  box-sizing: border-box;
}

/* ── About Hero ── */
.about-hero {
  background: var(--color-white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-slate-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  max-width: 700px;
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--color-slate-700);
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}

/* ── Photo Placeholder ── */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--color-light-pink);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(220,20,60,0.12);
  margin: 0 auto;
  box-sizing: border-box;
}

.photo-placeholder svg { width: 48px; height: 48px; color: var(--color-primary); opacity: 0.6; }

.photo-placeholder__label {
  font-size: 0.78rem;
  color: var(--color-primary);
  font-weight: 500;
  opacity: 0.7;
}

/* ── Founder Story ── */
.founder-grid {
  display: flex;
  align-items: center;               /* vertically center left column against full text height */
  gap: 64px;
  box-sizing: border-box;
}

/* DOM order: photo-col first, text-col second = photo left, text right on desktop */
/* flex: 2 / flex: 3 preserves the original 2fr : 3fr column ratio */

.founder-text-col {
  flex: 3 1 0;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

.founder-photo-col {
  flex: 2 1 0;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-caption {
  text-align: center;
  margin: 12px 0 0;
}

.founder-caption__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-slate-700);
  margin: 0 0 4px;
}

.founder-caption__detail {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-slate-500);
  margin: 0 0 3px;
}

.founder-photo {
  display: block;
  width: 100%;
  height: 520px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 100%;
  box-sizing: border-box;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-photo-placeholder {
  width: 100%;
  max-width: 100%;
  height: 520px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.founder-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-slate-700);
  margin: 0 0 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: justify;
  hyphens: auto;
}

.founder-sign {
  font-style: italic;
  color: var(--color-primary);
  font-size: 18px;
  margin: 32px 0 0;
  line-height: 1.8;
  word-wrap: break-word;
}

/* ── What You Will Find Here (editorial large-number list) ── */
.find-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Desktop: number is a large left column spanning heading + description.
   The __head wrapper is flattened (display: contents) so num/title lay out
   as direct grid items — identical to the previous flex layout. */
.find-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: clamp(20px, 4vw, 48px);
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.find-item:first-child {
  border-top: none;
  padding-top: 0;
}

.find-item:last-child { padding-bottom: 0; }

.find-item__head { display: contents; }

.find-item__num {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  width: 1.6em;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #9ca3af;
}

.find-item__title {
  grid-column: 2;
  grid-row: 1;
  padding-top: 6px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-slate-900);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 8px;
}

.find-item__desc {
  grid-column: 2;
  grid-row: 2;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-slate-600);
  line-height: 1.7;
  margin: 0;
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  transition: opacity 0.4s ease;
}

.scroll-indicator__text {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #94a3b8;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 500;
}

.scroll-indicator__icon {
  display: block;
  opacity: 0.6;
  animation: bounce-down 1.5s infinite ease-in-out;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ── Mobile Scroll Indicator (fixed, bottom of screen) ── */
/* Default: hidden — shown only via mobile media query below */
.mobile-scroll-indicator {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  pointer-events: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.mobile-scroll-indicator svg {
  animation: bounce-down 1.5s infinite ease-in-out;
}

/* ── Desktop: reduce top whitespace so Keep Reading is visible on load ── */
@media (min-width: 1024px) {
  .section--about-founder {
    padding-top: 32px;
  }

  .scroll-indicator {
    padding: 8px 0;
  }

  /* Tighten paragraph spacing so the KEEP READING indicator is visible on
     standard laptop heights (~800px) without scrolling */
  .founder-body {
    margin-bottom: 12px;
    line-height: 1.7;
  }
}

/* ── Tablet (768px – 1023px) ── */
@media (max-width: 1023px) {
  .founder-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  /* Text above, photo below — full width when stacked */
  .founder-text-col { order: 1; flex: 0 0 auto; width: 100%; }
  .founder-photo-col { order: 2; flex: 0 0 auto; width: 100%; }

  .founder-photo,
  .founder-photo-placeholder {
    height: 420px;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    border-radius: 16px;
  }

  .founder-photo img {
    object-position: center center;
  }

  .founder-body { font-size: 16px; }
  .founder-sign { font-size: 17px; }

  .section { padding: 60px 0; }
}

/* ── Mobile (max-width: 767px) ── */
@media (max-width: 767px) {
  .founder-grid { gap: 24px; }

  .founder-photo,
  .founder-photo-placeholder {
    height: 420px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
  }

  .founder-body {
    font-size: 15px;
    line-height: 1.7;
  }

  .founder-sign { font-size: 16px; }

  .section { padding: 40px 0; }

  /* Hide "Keep Reading" indicator — photo flows directly below text */
  .scroll-indicator { display: none; }

  /* Show mobile scroll indicator */
  .mobile-scroll-indicator { display: flex; }

  /* What You Will Find Here — number in a fixed-width left column; heading
     and description both align to the start of the right column.
     --num-col is the shared indent so the two stay in sync. */
  .find-item {
    display: block;
    padding: 24px 0;
    --num-col: 48px;
  }

  /* Number + heading share a flex row, number vertically centered */
  .find-item__head {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .find-item__num {
    /* reset desktop grid placement/sizing */
    grid-column: auto;
    grid-row: auto;
    flex-shrink: 0;
    min-width: var(--num-col);
    width: auto;
    font-size: 26px;
    line-height: 1;
  }

  .find-item__title {
    padding-top: 0;
    margin: 0;
    font-size: 1.1rem;
  }

  /* Indent by the number column so text aligns under the heading */
  .find-item__desc {
    margin: 6px 0 0 var(--num-col);
    font-size: 0.95rem;
  }
}

