/* ========================================
   About Page — /about
   Scoped under .about-page
   ======================================== */

.about-page {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: #1c1b18;
  overflow-x: hidden;
}

.about-page *, .about-page *::before, .about-page *::after {
  box-sizing: border-box;
}

/* INNER CONTAINER */
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

/* LABEL */
.about-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 20px;
  display: block;
}

/* DISPLAY TEXT */
.about-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: #1c1b18;
}
.about-display em {
  font-style: italic;
  color: #C9A96E;
}

/* FADE-IN ANIMATIONS — pure CSS, no JS needed */
@keyframes aboutFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.about-page .fade-up {
  animation: aboutFadeUp 0.7s ease both;
}
.about-page .fade-up-delay-1 { animation-delay: 0.1s; }
.about-page .fade-up-delay-2 { animation-delay: 0.2s; }
.about-page .fade-up-delay-3 { animation-delay: 0.3s; }

/* ========================
   HERO
   ======================== */
.about-hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  background: #1c1b18;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(28,27,24,0.85) 30%, rgba(28,27,24,0.2) 70%),
    url('https://indyguide-web-development.s3.us-east-2.amazonaws.com/gallery/indyguide/thumbnail/1584783799_indyguide.webp') center/cover no-repeat;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 900px;
}

.about-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 20px;
}

.about-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 28px;
}
.about-headline em {
  font-style: italic;
  color: #e8d5b0;
}

.about-hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
}

.about-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: aboutScrollPulse 2s ease-in-out infinite;
}

@keyframes aboutScrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.1); }
}

/* ========================
   MISSION
   ======================== */
.about-mission {
  background: #faf8f4;
  padding: 120px 0;
}

.about-mission-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.about-mission-intro {
  padding-top: 12px;
  font-size: 16px;
  line-height: 1.8;
  color: #5a5648;
  max-width: 480px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(28,27,24,0.08);
}

.about-pillar {
  background: #faf8f4;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.about-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: #C9A96E;
  transition: height 0.4s ease;
}
.about-pillar:hover::before { height: 100%; }
.about-pillar:hover { background: #fff; }

.about-pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.about-pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #1c1b18;
  margin-bottom: 14px;
}

.about-pillar-text {
  font-size: 14px;
  line-height: 1.75;
  color: #5a5648;
}

/* DIVIDER */
.about-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #C9A96E, transparent);
  margin: 0 80px;
  opacity: 0.3;
}

/* ========================
   HOW IT WORKS
   ======================== */
.about-how {
  background: #1c1b18;
  padding: 120px 0;
  overflow: hidden;
}

.about-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-steps {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}

.about-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.about-step:last-child { border-bottom: none; }

.about-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  color: #C9A96E;
  letter-spacing: 0.05em;
  padding-top: 3px;
}

.about-step-content h4 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.about-step-content p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}

/* IMAGE STACK */
.about-image-stack {
  position: relative;
  height: 520px;
}

.about-img {
  position: absolute;
  border-radius: 2px;
  object-fit: cover;
  overflow: hidden;
}

.about-img-main {
  width: 75%;
  height: 400px;
  top: 0; right: 0;
  background: linear-gradient(135deg, #2a2820, #1c1b18);
}

.about-img-accent {
  width: 55%;
  height: 260px;
  bottom: 0; left: 0;
  background: linear-gradient(135deg, #3a3525, #2a2820);
  border: 1px solid rgba(201,169,110,0.2);
}

.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

/* ========================
   FOUNDERS
   ======================== */
.about-founders {
  background: #faf8f4;
  padding: 120px 0;
}

.about-founders-header {
  text-align: center;
  margin-bottom: 80px;
}
.about-founders-header .about-display {
  margin-top: 12px;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(28,27,24,0.08);
}

.about-founder-card {
  background: #faf8f4;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: start;
  transition: background 0.3s;
}
.about-founder-card:hover { background: #fff; }

.about-founder-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(201,169,110,0.3);
}

.about-founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #1c1b18;
  margin-bottom: 4px;
}

.about-founder-role {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 20px;
}

.about-founder-bio {
  font-size: 14px;
  line-height: 1.8;
  color: #5a5648;
}

/* ========================
   BRAND / NOMAD
   ======================== */
.about-brand {
  background: #f5f0e8;
  padding: 100px 0;
}

.about-brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-brand-text .about-display { margin-bottom: 24px; }

.about-brand-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5648;
  margin-bottom: 16px;
}

.about-brand-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-brand-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-brand-circle::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.15);
}

.about-brand-circle-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: #C9A96E;
  opacity: 0.4;
}

.about-nomad-img {
  width: 180px;
  position: absolute;
}

/* ========================
   PRESS
   ======================== */
.about-press {
  background: #1c1b18;
  padding: 80px 0;
}

.about-press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-press-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
  cursor: default;
}
.about-press-logo:hover { color: #e8d5b0; text-decoration: none; }
a.about-press-logo { text-decoration: none; }

/* ========================
   CTA
   ======================== */
.about-cta {
  background: #faf8f4;
  padding: 120px 0;
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #1c1b18;
  color: #e8d5b0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.about-btn-primary:hover { background: #2d2c27; color: #e8d5b0; text-decoration: none; }

.about-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: #1c1b18;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(28,27,24,0.25);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.about-btn-secondary:hover {
  border-color: #C9A96E;
  color: #C9A96E;
  text-decoration: none;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  .about-inner { padding: 0 32px; }
  .about-mission-header { grid-template-columns: 1fr; gap: 40px; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-how-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-stack { display: none; }
  .about-founder-grid { grid-template-columns: 1fr; }
  .about-brand-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-content { padding: 0 32px; }
  .about-hero-bg { background-position: 60% center !important; }
  .about-divider { margin: 0 32px; }
  .about-scroll-hint { display: none; }
}

@media (max-width: 600px) {
  .about-inner { padding: 0 20px; }
  .about-mission { padding: 80px 0; }
  .about-how { padding: 80px 0; }
  .about-founders { padding: 80px 0; }
  .about-brand { padding: 60px 0; }
  .about-cta { padding: 80px 0; }
  .about-hero-content { padding: 0 20px; }
  .about-founder-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }
  .about-founder-photo {
    margin: 0 auto 16px;
  }
  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .about-brand-circle {
    width: 240px;
    height: 240px;
  }
  .about-brand-circle-text { font-size: 60px; }
  .about-camel-svg { width: 130px; }
  .about-press-logos { gap: 30px; }
}
