/* ================================================================
   FARROW FIELD — ABOUT.CSS
   About page: brand story, values grid, editorial banner,
   contact strip
   ================================================================ */


/* ══════════════════════════════════════════════════════════
   BRAND STORY
══════════════════════════════════════════════════════════ */

.about-story {
  padding: var(--section-gap) 0;
}

.about-story-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.about-story-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.about-story-copy p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.about-story-copy p:last-child {
  margin-bottom: 0;
}

.about-story-img-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-panel);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 32px var(--color-brand-glow);
}

.about-story-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 900px) {
  .about-story-grid {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }

  .about-story-copy {
    flex: 1 1 0;
  }

  .about-story-visual {
    flex: 0 0 48%;
  }
}


/* ══════════════════════════════════════════════════════════
   VALUES
══════════════════════════════════════════════════════════ */

.about-values {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--color-border-soft);
}

.about-values-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-values-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ══════════════════════════════════════════════════════════
   EDITORIAL BANNER
══════════════════════════════════════════════════════════ */

.about-editorial {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem var(--container-px);
}

.about-editorial-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.about-editorial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.68);
  z-index: 1;
}

.about-editorial-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.about-editorial-inner h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

.about-editorial-inner .btn svg {
  margin-left: 0.4rem;
  vertical-align: -2px;
}


/* ══════════════════════════════════════════════════════════
   CONTACT STRIP
══════════════════════════════════════════════════════════ */

.about-contact-strip {
  padding: 3.5rem 0;
  border-top: 1px solid var(--color-border-soft);
}

.about-contact-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.about-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.about-contact-item address,
.about-contact-item a {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  text-decoration: none;
}

.about-contact-item a:hover {
  color: var(--color-brand);
}

.about-contact-item a:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
  border-radius: 3px;
}

.about-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-brand-soft);
  border: 1px solid rgba(251, 61, 14, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  flex-shrink: 0;
}

.about-contact-sep {
  display: block;
  width: 1px;
  height: 2.5rem;
  background: var(--color-border-soft);
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .about-contact-sep {
    display: none;
  }
}
