/* =========================================================
   OLS Corporation — Shared styles for content pages
   (À propos · Conditions · Contact). Extends ols-styles.css
   + ols-services.css (uses .shero, .section-head, tokens).
   ========================================================= */

/* Generic prose block (about + legal) */
.page-prose { max-width: 760px; margin: 0 auto; }
.page-prose > * + * { margin-top: 20px; }
.page-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 56px 0 8px;
}
.page-prose h2 em { font-style: italic; color: var(--gold); }
.page-prose h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 500;
  color: var(--text);
  margin: 32px 0 4px;
}
.page-prose p,
.page-prose li {
  font-size: clamp(15.5px, 1.1vw, 17px);
  line-height: 1.75;
  color: var(--text-dim);
  text-wrap: pretty;
}
.page-prose p:first-of-type.lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  color: var(--text);
}
.page-prose strong { color: var(--text); font-weight: 500; }
.page-prose em { font-style: italic; color: var(--gold-light); }
.page-prose a { color: var(--gold-light); }
.page-prose a:hover { color: var(--gold); }
.page-prose ul { padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.page-prose ul li::marker { color: var(--gold); }

/* Legal: numbered section meta */
.legal-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 56px;
  margin-bottom: -2px;
}
.legal-note {
  margin-top: 40px;
  padding: 18px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(201, 169, 97, 0.05);
  font-size: 13.5px;
  color: var(--text-muted);
}
.legal-note strong { color: var(--gold-light); }

/* Values grid (À propos) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: 44px;
}
.value-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(19,31,54,0.5), transparent);
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.value-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); }
.value-card__n {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; color: var(--gold);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500; color: var(--text);
  margin: 12px 0 10px;
}
.value-card h3 em { font-style: italic; color: var(--gold); }
.value-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-dim); margin: 0; }

/* Stats row (À propos) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__v {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(34px, 4vw, 52px); color: var(--gold-light); line-height: 1;
}
.stat__l {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
}

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact-list { display: flex; flex-direction: column; gap: 4px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item__ic {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--gold-dark); color: var(--gold);
  display: grid; place-items: center;
}
.contact-item__ic svg { width: 20px; height: 20px; }
.contact-item__label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
}
.contact-item__val { font-size: 16px; color: var(--text); line-height: 1.45; }
.contact-item__val a { color: var(--text); transition: color 0.3s; }
.contact-item__val a:hover { color: var(--gold-light); }

.contact-map {
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  background: var(--surface);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }

.contact-cta {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; gap: 14px;
}

@media (max-width: 880px) {
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .contact-grid { grid-template-columns: 1fr; }
}
