/* Crumbcast About Page Styles — standalone, no SCSS compilation needed */

/* ---- About Hero ---- */

.about-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.about-hero-bg {
  background: linear-gradient(135deg, #1e2a33, #141d24, #0c1318);
}
.about-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(90,125,154,0.25), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(156,168,163,0.12), transparent 50%);
}

.about-hero__texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.035;
  mix-blend-mode: overlay;
}

.about-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 100%);
  filter: blur(3px);
  animation: focus-pull 0.5s ease-out 0.3s forwards;
}
.about-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 20%;
  filter: grayscale(1) contrast(1.4) brightness(0.7);
  mix-blend-mode: screen;
}

/* Viewfinder corners */
.about-hero::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 32px;
  bottom: 24px;
  left: 32px;
  z-index: 3;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='32'%3E%3Cpolyline points='58.5,1.5 1.5,1.5 1.5,30.5' fill='none' stroke='white' stroke-opacity='0.15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") top left no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='32'%3E%3Cpolyline points='1.5,1.5 58.5,1.5 58.5,30.5' fill='none' stroke='white' stroke-opacity='0.15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") top right no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='32'%3E%3Cpolyline points='1.5,1.5 1.5,30.5 58.5,30.5' fill='none' stroke='white' stroke-opacity='0.15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") bottom left no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='32'%3E%3Cpolyline points='58.5,1.5 58.5,30.5 1.5,30.5' fill='none' stroke='white' stroke-opacity='0.15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") bottom right no-repeat;
}

.about-hero__content {
  position: relative;
  z-index: 4;
  padding: 60px;
  width: 100%;
}

.about-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sage-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.8;
}

.about-hero .about-hero__title {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--chalk);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

/* Stats row — reuses events-hero stat styling */
.about-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.about-hero__stat-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--chalk);
  display: block;
  line-height: 1;
}
.about-hero__stat-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
  color: var(--mist);
}

/* ---- Editorial Blocks ---- */

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
  align-items: center;
}

.about-block__text h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}
.about-block__text p {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a56;
  margin-bottom: 16px;
  max-width: 480px;
}

.about-block__image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #2c3527, #3a4a3a);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(26, 26, 24, 0.1);
}
.about-block__image::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}
.about-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.about-block__image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  opacity: 0.15;
  color: white;
}

/* ---- Pull Quote (full-width dark strip) ---- */

.about-pullquote {
  background: var(--ink);
  padding: 64px 48px;
  width: 100%;
}
.about-pullquote__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.about-pullquote blockquote {
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--chalk);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ---- Full-width Image Break ---- */

.about-fullwidth {
  width: 100%;
  aspect-ratio: 21 / 9;
  background: linear-gradient(135deg, #3a4a3a, #2c3527 40%, #1a2218 70%, #0f1a12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(26, 26, 24, 0.1);
}
.about-fullwidth::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}
.about-fullwidth img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-fullwidth__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 0.1;
  color: white;
}

/* ---- Stats Strip ---- */

.about-stats {
  background: var(--ink);
  padding: 56px 48px;
}
.about-stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  text-align: center;
}
.about-stats__item-value {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 500;
  color: var(--chalk);
  display: block;
  line-height: 1;
}
.about-stats__item-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 8px;
  display: block;
}

/* ---- Philosophy Quote ---- */

.about-philosophy {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 48px;
  text-align: center;
}
.about-philosophy__quote {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-philosophy__text {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a56;
  max-width: 540px;
  margin: 0 auto;
}

/* ---- Responsive ---- */

/* Tablet: two-column grid stays, just tighter */
@media (max-width: 992px) {
  .about-hero {
    height: 280px;
  }
  .about-hero .about-hero__title {
    font-size: 36px;
  }
  .about-hero__eyebrow {
    font-size: 9px;
    letter-spacing: 2px;
  }
  .about-hero__content {
    padding: 40px 38px;
  }
  .about-hero::after {
    top: 16px;
    right: 16px;
    bottom: 16px;
    left: 16px;
  }
  .about-hero__stats {
    gap: 20px;
    margin-top: 16px;
  }
  .about-hero__stat-value {
    font-size: 20px;
  }

  .about-block {
    gap: 32px;
    padding: 48px 24px;
  }
  .about-block__text h2 {
    font-size: 26px;
  }
  .about-block__text p {
    font-size: 14px;
  }

  .about-pullquote {
    padding: 40px 20px;
  }
  .about-pullquote blockquote {
    font-size: 22px;
  }

  .about-fullwidth {
    aspect-ratio: 16 / 9;
  }

  .about-stats {
    padding: 36px 20px;
  }
  .about-stats__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
  .about-stats__item-value {
    font-size: 24px;
  }
  .about-stats__item-label {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .about-philosophy {
    padding: 48px 20px;
  }
  .about-philosophy__quote {
    font-size: 22px;
  }
  .about-philosophy__text {
    font-size: 14px;
  }
}

/* Mobile: stack to single column */
@media (max-width: 767px) {
  .about-hero__content {
    padding: 24px 16px 24px 27px;
  }
  .about-block {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 20px;
  }
  .about-block__image {
    aspect-ratio: 3 / 4;
    order: -1;
  }
}
