/* ==========================================================================
   Auld & Associates — About page styles
   css/about.css  (depends on css/main.css tokens + utilities)
   ========================================================================== */

/* ==========================================================================
   Page hero (shorter than the home hero)
   ========================================================================== */
.about-hero {
  position: relative;
  min-height: 55svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink-950);
}

.about-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.about-hero__img {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center 30%;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Heavier than the home hero overlay: this section is short, so the photo
     needs to recede further behind the headline for legibility. */
  background:
    linear-gradient(180deg, rgba(11, 15, 20, .82) 0%, rgba(11, 15, 20, .9) 55%, rgba(11, 15, 20, .97) 100%),
    linear-gradient(90deg, rgba(11, 15, 20, .92) 0%, rgba(11, 15, 20, .55) 60%, rgba(11, 15, 20, .85) 100%);
}

.about-hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 16vw rgba(0, 0, 0, .65);
  pointer-events: none;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  padding-block: calc(var(--header-h) + 2.5rem) 4rem;
}

.about-hero__eyebrow-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1.5rem;
}

.about-hero__title {
  color: var(--ink-100);
  margin-bottom: 1.25rem;
}

.about-hero__lede {
  color: var(--ink-300);
  font-size: 1.125rem;
  max-width: 38rem;
}

/* ==========================================================================
   Our Story
   ========================================================================== */
.story {
  background: var(--ink-950);
}

.story__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .story__grid {
    grid-template-columns: .85fr 1.15fr;
    gap: 4.5rem;
    align-items: start;
  }
}

.pull-quote {
  position: relative;
  margin: 0;
  padding-top: .5rem;
}

.pull-quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--brass-500);
  opacity: .85;
  margin-bottom: .25rem;
}

.pull-quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.25;
  color: var(--ink-100);
  max-width: 20ch;
}

.story__text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story__text {
  color: var(--ink-300);
  font-size: 1.0625rem;
}

/* ==========================================================================
   Areas of experience
   ========================================================================== */
.areas-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 3rem;
}

@media (min-width: 640px) {
  .areas-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.areas-list__item {
  position: relative;
  padding: 1.15rem 0 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border-on-paper);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink-on-paper);
}

.areas-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.6rem;
  width: 8px;
  height: 1px;
  background: var(--brass-600);
}

/* ==========================================================================
   We are driven by results
   ========================================================================== */
.results {
  background: var(--ink-900);
}

.results__statement {
  max-width: 52rem;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--border-on-dark);
  text-align: center;
}

.results__statement p {
  margin-inline: auto;
  color: var(--ink-300);
  font-size: 1.0625rem;
}

/* ==========================================================================
   Closing band
   ========================================================================== */
.about-closing {
  padding-block: clamp(4rem, 8vw, 6.5rem);
}
