﻿/* =========================================================
   ABOUT US PAGE
   New page (no design hand-off file to port), so  per
   BRAND-IDENTITY.md §3  every color/size/radius/shadow/duration
   below comes from assets/css/base/tokens.css rather than a
   hardcoded literal.

   Scoping: every rule is anchored to .about-page so generic class
   names (.eyebrow, .crumb…) cannot leak into WordPress markup or
   plugin output  see BRAND-IDENTITY.md §2.
   ========================================================= */

.about-page, .about-page * { box-sizing: border-box; margin: 0; padding: 0; }

.about-page a { color: inherit; }
.about-page svg { display: block; }

/* ---------------- shared: eyebrow + breadcrumb ---------------- */
.about-page .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--fm-font-sans);
  font-size: var(--fm-text-12);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fm-gold-pale);
  margin-bottom: var(--fm-space-4);
}
.about-page .eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--fm-gold);
  flex-shrink: 0;
}

.about-page .crumb {
  max-width: 1180px;
  margin: 0 auto var(--fm-space-6);
  display: flex;
  align-items: center;
  gap: var(--fm-space-2);
  flex-wrap: wrap;
  font-family: var(--fm-font-sans);
  font-size: var(--fm-text-11-5);
  letter-spacing: 0.5px;
  color: var(--fm-cream-dim);
}
.about-page .crumb a { text-decoration: none; transition: color var(--fm-duration-fast) var(--fm-ease); }
.about-page .crumb a:hover { color: var(--fm-gold-light); }
.about-page .crumb .sep { color: var(--fm-cream-dim); opacity: 0.5; }
.about-page .crumb .here { color: var(--fm-gold-light); }

/* ---------------- intro (dark band) ---------------- */
.about-page .about-intro {
  background: var(--fm-black);
  padding: var(--fm-space-9) 72px;
  text-align: center;
}
.about-page .about-intro .eyebrow { justify-content: center; }
.about-page .about-intro-title {
  font-family: var(--fm-font-serif);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--fm-headline-light);
  margin-bottom: var(--fm-space-5);
}
.about-page .about-intro-lede {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--fm-font-sans);
  font-size: var(--fm-text-15);
  line-height: 1.75;
  color: var(--fm-cream-dim);
}

/* ---------------- story (light, two-column) ---------------- */
.about-page .about-story {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--fm-space-9) 24px;
  display: flex;
  align-items: center;
  gap: var(--fm-space-9);
}
.about-page .about-story-media {
  flex: 0 0 380px;
  aspect-ratio: 4 / 5;
  border-radius: var(--fm-radius-lg);
  background: linear-gradient(150deg, var(--fm-grad-portrait-1) 0%, var(--fm-grad-portrait-2) 45%, var(--fm-grad-portrait-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .about-story-media .monogram {
  font-family: var(--fm-font-serif);
  font-style: italic;
  font-size: 64px;
  color: rgba(var(--fm-rgb-white), 0.5);
  letter-spacing: 1px;
}
.about-page .about-story-copy { flex: 1 1 auto; }
.about-page .about-story-copy h2 {
  font-family: var(--fm-font-serif);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--fm-ink);
  margin-bottom: var(--fm-space-5);
}
.about-page .about-story-copy p {
  font-family: var(--fm-font-sans);
  font-size: var(--fm-text-14);
  line-height: 1.8;
  color: var(--fm-ink-mute);
  margin-bottom: var(--fm-space-4);
}
.about-page .about-story-copy p:last-child { margin-bottom: 0; }

/* ---------------- values grid (light) ---------------- */
.about-page .about-values {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--fm-space-9) 24px;
}
.about-page .about-values-head { text-align: center; margin-bottom: var(--fm-space-9); }
.about-page .about-values-head h2 {
  font-family: var(--fm-font-serif);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--fm-ink);
}
.about-page .about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--fm-space-7);
}
.about-page .about-value-card { text-align: center; }
.about-page .about-value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--fm-space-5);
  border-radius: var(--fm-radius-circle);
  border: 1px solid var(--fm-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fm-duration-base) var(--fm-ease);
}
.about-page .about-value-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--fm-gold-deep);
  stroke-width: 1.5;
}
.about-page .about-value-card:hover .about-value-icon { background: #000000; border-color: #000000; }
.about-page .about-value-card:hover .about-value-icon svg { stroke: #ffffff; }
.about-page .about-value-card h3 {
  font-family: var(--fm-font-sans);
  font-weight: 600;
  font-size: var(--fm-text-14);
  letter-spacing: 0.4px;
  color: var(--fm-ink);
  margin-bottom: var(--fm-space-3);
}
.about-page .about-value-card p {
  font-family: var(--fm-font-sans);
  font-size: var(--fm-text-13);
  line-height: 1.7;
  color: var(--fm-ink-mute);
}

/* ---------------- quote (dark band) ---------------- */
.about-page .about-quote {
  background: var(--fm-black);
  padding: var(--fm-space-9) 24px;
  text-align: center;
}
.about-page .about-quote blockquote {
  max-width: 760px;
  margin: 0 auto var(--fm-space-5);
  font-family: var(--fm-font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.6;
  color: var(--fm-headline-light);
}
.about-page .about-quote cite {
  font-family: var(--fm-font-sans);
  font-style: normal;
  font-size: var(--fm-text-11-5);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fm-gold-pale);
}

/* ---------------- CTA (light) ---------------- */
.about-page .about-cta {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--fm-space-9) 24px;
  text-align: center;
}
.about-page .about-cta h2 {
  font-family: var(--fm-font-serif);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--fm-ink);
  margin-bottom: var(--fm-space-4);
}
.about-page .about-cta p {
  font-family: var(--fm-font-sans);
  font-size: var(--fm-text-14);
  line-height: 1.7;
  color: var(--fm-ink-mute);
  margin-bottom: var(--fm-space-7);
}

@media (max-width: 980px) {
  .about-page .about-story { flex-direction: column; }
  .about-page .about-story-media { flex: 0 0 auto; width: 100%; max-width: 380px; }
  .about-page .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .about-page .about-intro,
  .about-page .about-story,
  .about-page .about-values,
  .about-page .about-quote,
  .about-page .about-cta { padding-left: 20px; padding-right: 20px; }
  .about-page .about-values-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   LIGHT THEME  scoped to .about-page (see base/tokens.css's own
   light-theme comment). Covers both dark bands on this page
   (.about-intro and .about-quote) at once; .about-cta below is already a
   light section (uses --fm-ink, not these tokens) and is untouched.
   ========================================================= */
html[data-theme="light"] .about-page {
  --fm-black: #ffffff;
  --fm-cream: #000000;
  --fm-cream-dim: #656565;
  --fm-headline-light: #000000;
  --fm-hairline-dark: rgba(0, 0, 0, 0.1);
  --fm-gold-pale: #C9A236;
  --fm-gold-light: #C9A236;
}
