/* ── ABOUT HERO ── */
.about-hero {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  min-height: 70vh;
  background: var(--ink-2);
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.about-hero-content {
  padding: 120px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-eyebrow {
  font-family: var(--fj);
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.about-hero h1 {
  font-family: var(--fd);
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}
.about-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.about-hero-subtitle {
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
  max-width: 360px;
}
.about-hero-image {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.about-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
  transition: transform 12s ease;
}
.about-hero:hover .about-hero-image img {
  transform: scale(1.05);
}
.about-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink-2) 0%, transparent 15%, transparent 85%, var(--ink-2) 100%);
  pointer-events: none;
}

/* ── EDITORIAL SECTIONS ── */
.about-section {
  padding: 120px 64px;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.about-section-container {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
}
.section-left {
  position: sticky;
  top: 100px;
  height: fit-content;
}
.editorial-label {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.editorial-title {
  font-family: var(--fd);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}
.editorial-title em {
  font-style: italic;
  color: var(--gold);
}
.editorial-lead {
  font-family: var(--fd);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 32px;
}
.editorial-body {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.85;
  margin-bottom: 24px;
}
.editorial-body:last-child {
  margin-bottom: 0;
}

/* ── SILO ACCORDION LIST ── */
.silo-accordion-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.silo-accordion-item {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.silo-accordion-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.silo-accordion-item dt {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.silo-accordion-item dd {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--sand);
  line-height: 1.7;
}

/* ── DUAL VALUES COLUMNS ── */
.dual-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.column-title {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

/* ── CLOSING SECTION ── */
.about-closing {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.about-closing-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.about-closing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.05);
}
.about-closing-overlay {
  position: relative;
  z-index: 2;
  padding: 48px 24px;
  max-width: 580px;
  margin: 0 auto;
}
.about-closing h2 {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-closing h2 em {
  font-style: italic;
  color: var(--gold);
}
.about-closing-text {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ── RESPONSIVE OVERRIDES ── */
@media (max-width: 1080px) {
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-hero-image {
    display: none;
  }
  .about-hero-content {
    padding: 140px 48px 80px;
  }
  .about-section {
    padding: 100px 48px;
  }
  .about-section-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .about-hero-content {
    padding: 120px 24px 60px;
  }
  .about-section {
    padding: 80px 24px;
  }
  .dual-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
