/* ============================================================
   ABOUT PAGE — premium editorial layout
   Blocks: hero, history+timeline-grid, goals, parallax quote,
   conference, photos grid, legal basis
   ============================================================ */

/* ===== BLOCK 1: FULL-BLEED HERO ===== */

.about-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.about-hero__media {
  width: 100%;
  height: 100%;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  animation: aboutHeroZoom 10s ease-out forwards;
  filter: brightness(1.02) contrast(1.04) saturate(0.92) sepia(0.03);
}

@keyframes aboutHeroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 36, 64, 0.85) 0%,
    rgba(15, 36, 64, 0.45) 40%,
    rgba(15, 36, 64, 0.1) 70%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
}

.about-hero__content {
  padding: clamp(2rem, 5vh, 4rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.about-hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold, #B8860B);
  margin-bottom: 16px;
  display: block;
}

.about-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FAF7EE;
  margin: 0 0 12px;
  max-width: 700px;
}

.about-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 238, 0.75);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__media img { animation: none; }
}

/* ===== BLOCK 2: HISTORY + TIMELINE GRID ===== */

.about-history {
  background: var(--paper, #FAF7EE);
  padding: clamp(5rem, 10vh, 8rem) 0 clamp(3rem, 6vh, 5rem);
}

.about-history__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.about-history__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy, #7A1E2E);
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
  display: block;
}

.about-history__body {
  max-width: 800px;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.about-history__body p {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft, #3D4454);
  margin: 0 0 1.5em;
}

.about-history__body p:first-of-type::first-letter {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 4em;
  float: left;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 6px;
  color: var(--gold, #B8860B);
}

/* ===== TIMELINE — pinned horizontal scroll (GSAP) ===== */

.timeline-section {
  background: var(--paper-deep, #F2EBD8);
  padding: clamp(4rem, 8vh, 6rem) 0 clamp(4rem, 8vh, 6rem);
  overflow: hidden;
}

.timeline-section__header {
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  margin-bottom: clamp(3rem, 5vh, 4rem);
}

.timeline-section__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy, #7A1E2E);
  display: block;
  margin-bottom: 12px;
}

.timeline-section__title {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--navy, #1B3A5C);
  margin: 0;
}

.timeline-track__wrapper {
  width: 100%;
  overflow: hidden;
}

.timeline-track {
  display: flex;
  gap: 24px;
  padding: 4px clamp(1.5rem, 5vw, 3rem) 24px;
  width: max-content;
  will-change: transform;
}

/* Mobile/no-JS fallback: native horizontal scroll */
@media (max-width: 960px) {
  .timeline-track__wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .timeline-track__wrapper::-webkit-scrollbar { display: none; }
  .timeline-track { width: max-content; }
  .timeline-card { scroll-snap-align: start; }
}

.timeline-card {
  flex: 0 0 420px;
  background: rgba(250, 247, 238, 0.7);
  padding: 32px;
  border-top: 3px solid var(--gold, #B8860B);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline-card--active {
  background: rgba(250, 247, 238, 0.95);
  border-top-color: var(--burgundy, #7A1E2E);
}

.timeline-card__date {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy, #7A1E2E);
}

.timeline-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--navy, #1B3A5C);
  margin: 0;
}

.timeline-card__text {
  font-family: 'Literata', Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft, #3D4454);
  margin: 6px 0 0;
}

@media (max-width: 768px) {
  .timeline-card {
    flex: 0 0 300px;
    padding: 24px;
  }
}

/* ===== BLOCK 2.5: GOALS ===== */

.about-goals {
  background: var(--paper, #FAF7EE);
  padding: clamp(3rem, 6vh, 5rem) 0 clamp(5rem, 10vh, 8rem);
}

.about-goals__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.about-goals__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy, #7A1E2E);
  margin-bottom: 16px;
  display: block;
}

.about-goals__title {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--navy, #1B3A5C);
  margin: 0 0 clamp(2rem, 4vh, 3rem);
  max-width: 700px;
}

.about-goals__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.about-goals__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(27, 58, 92, 0.12);
}

.about-goals__item:first-child { padding-top: 0; }
.about-goals__item:last-child { border-bottom: none; padding-bottom: 0; }

.about-goals__marker {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--gold, #B8860B);
  margin-top: 9px;
}

.about-goals__text {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--ink-soft, #3D4454);
}

/* ===== BLOCK 3: PARALLAX QUOTE ===== */

.about-quote {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-quote__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(1.02) contrast(1.06) saturate(0.86) sepia(0.06);
}

.about-quote__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 36, 64, 0.78);
}

.about-quote__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: clamp(3rem, 8vh, 6rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

.about-quote__mark {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(4rem, 8vw, 8rem);
  color: var(--gold, #B8860B);
  line-height: 0.5;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.about-quote__text {
  margin: 0;
  padding: 0;
  border: none;
}

.about-quote__text p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.45;
  color: #FAF7EE;
  margin: 0 0 2rem;
}

.about-quote__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-quote__name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light, #D4A73A);
  display: block;
}

.about-quote__role {
  font-family: 'Literata', Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(250, 247, 238, 0.6);
  display: block;
}

@media (max-width: 768px) {
  .about-quote__bg { background-attachment: scroll; }
}

/* ===== BLOCK 4: CONFERENCE — ivory ===== */

.about-conference {
  background: var(--paper, #FAF7EE);
  padding: clamp(5rem, 10vh, 8rem) 0;
}

.about-conference__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.about-conference__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy, #7A1E2E);
  margin-bottom: 16px;
  display: block;
}

.about-conference__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--navy, #1B3A5C);
  margin: 0 0 12px;
}

.about-conference__date {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink-muted, #6B7280);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: clamp(2rem, 4vh, 3rem);
}

.about-conference__body p {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft, #3D4454);
  margin: 0 0 1.5em;
}

/* ===== BLOCK 5: PHOTOS — simple 2-col grid ===== */

.about-gallery {
  background: var(--paper, #FAF7EE);
  padding: 0 0 clamp(5rem, 10vh, 8rem);
}

.about-gallery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.about-gallery__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted, #6B7280);
  display: block;
  margin-bottom: 20px;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.about-photos__item {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.about-photos__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}

.about-photos__item a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.about-photos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(1.02) contrast(1.06) saturate(0.86) sepia(0.06) hue-rotate(-2deg);
  transition:
    filter 500ms cubic-bezier(.2, .7, .2, 1),
    transform 700ms cubic-bezier(.2, .7, .2, 1);
}

@media (hover: hover) {
  .about-photos__item:hover img {
    filter: brightness(1.06) contrast(1.08) saturate(0.92) sepia(0.04);
    transform: scale(1.025);
  }
}

@media (max-width: 768px) {
  .about-photos {
    grid-template-columns: 1fr;
  }
  .about-photos__item--wide {
    aspect-ratio: 16 / 9;
  }
}

/* ===== BLOCK 6: LEGAL — ivory with gold hairline ===== */

.about-legal {
  background: var(--paper, #FAF7EE);
  padding: clamp(3rem, 6vh, 5rem) 0 clamp(5rem, 10vh, 8rem);
}

.about-legal::before {
  content: '';
  display: block;
  width: 120px;
  height: 1px;
  background: rgba(184, 134, 11, 0.4);
  margin: 0 auto clamp(3rem, 6vh, 5rem);
}

.about-legal__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.about-legal__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy, #7A1E2E);
  margin-bottom: clamp(1.5rem, 3vh, 2rem);
  display: block;
}

.about-legal__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: clamp(2rem, 4vh, 3rem);
}

.about-legal__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(27, 58, 92, 0.12);
}

.about-legal__doc {
  font-family: 'Literata', Georgia, serif;
  font-size: 15px;
  color: var(--navy, #1B3A5C);
}

.about-legal__date {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink-muted, #6B7280);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.about-legal__link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold, #B8860B);
  text-decoration: none;
  transition: color 200ms ease;
}

.about-legal__link:hover {
  color: var(--gold-light, #D4A73A);
}
