/* ── Page hero (small banner used on subpages) ── */
.page-hero {
  background: var(--navy); color: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden;
  border-block-end: 1px solid var(--line);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  opacity: 0.22; filter: grayscale(0.4);
}
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0.5), var(--navy));
}
.page-hero__inner { position: relative; display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: end; }
.page-hero__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; margin: 0.8rem 0 0.6rem; }
.page-hero__title em { color: var(--gold); font-style: normal; }
.page-hero__sub { color: rgba(255,255,255,0.78); max-width: 56ch; margin: 0; font-size: 1rem; }
.crumbs {
  font-family: var(--ff-en-ui); font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex; gap: 0.6rem; align-items: center;
}
.crumbs a:hover { color: var(--gold-2); }
.crumbs .sep { color: var(--gold); }

/* ── CMS page content (Pages CMS: About / legal / policy pages) ── */
.page-content {
  max-width: 820px; margin-inline: auto;
  color: var(--muted); font-size: 1.03rem; line-height: 1.9;
}
.page-content > :first-child { margin-block-start: 0; }
.page-content h1, .page-content h2, .page-content h3, .page-content h4 {
  font-family: var(--ff-ar-head, inherit);
  color: var(--navy); line-height: 1.3;
  margin-block: 1.8rem 0.7rem; font-weight: 700;
}
.page-content h2 { font-size: 1.5rem; }
.page-content h3 { font-size: 1.2rem; }
.page-content p { margin-block: 0 1.1rem; }
.page-content ul, .page-content ol { margin-block: 0 1.1rem; padding-inline-start: 1.4rem; }
.page-content li { margin-block-end: 0.5rem; }
.page-content a { color: var(--gold); text-decoration: underline; }
.page-content a:hover { color: var(--gold-2); }
.page-content img { max-width: 100%; height: auto; border-radius: 12px; margin-block: 1.2rem; }
.page-content strong { color: var(--navy); }
.page-content hr { border: 0; border-block-start: 1px solid var(--line); margin-block: 2rem; }
.page-content table { width: 100%; border-collapse: collapse; margin-block: 1.2rem; }
.page-content th, .page-content td { border: 1px solid var(--line); padding: 0.6rem 0.9rem; text-align: start; }

/* ── Designed About page (CMS-managed; pages.template = 'about') ──
   The page body is a single CMS rich-text field. This styles its semantic
   HTML into a multi-section design: a lead paragraph, gold-ruled section
   headings, a stat band (the <ul>), value blocks (<h3>+<p>) and a vertical
   timeline (the <ol>). Everything stays editable in Admin → Pages. */
.about-hero .page-hero__inner { grid-template-columns: 1fr; }
.about-article { max-width: 860px; margin-inline: auto; color: var(--muted); font-size: 1.05rem; line-height: 1.9; }
.about-article > p:first-of-type {
  font-size: 1.3rem; line-height: 1.7; color: var(--navy); font-weight: 500; margin-block: 0 2.2rem;
}
.about-article h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem); color: var(--navy); font-weight: 800;
  margin-block: 2.8rem 1rem; padding-block-end: 0.7rem; position: relative;
}
.about-article h2::after {
  content: ""; position: absolute; inset-inline-start: 0; inset-block-end: 0;
  width: 56px; height: 3px; background: var(--gold); border-radius: 2px;
}
.about-article h3 {
  font-size: 1.12rem; color: var(--navy); font-weight: 700;
  margin-block: 1.5rem 0.4rem; padding-inline-start: 0.9rem; border-inline-start: 3px solid var(--gold);
}
.about-article p { margin-block: 0 1.1rem; }
.about-article a { color: var(--gold); text-decoration: underline; }
.about-article strong { color: var(--navy); }
/* Stat band = the <ul> in the About body */
.about-article ul {
  list-style: none; padding: 0; margin-block: 1.6rem 2.6rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.about-article ul li {
  background: var(--cream, #F6F1E7); border: 1px solid var(--line, rgba(200,148,30,0.28));
  border-radius: 14px; padding: 1.4rem 1rem; text-align: center;
  font-size: 0.9rem; color: var(--muted); line-height: 1.5;
}
.about-article ul li strong {
  display: block; font-family: var(--ff-en, inherit); color: var(--gold);
  font-size: 2.2rem; font-weight: 700; line-height: 1; margin-block-end: 0.4rem;
}
/* Timeline = the <ol> in the About body */
.about-article ol {
  list-style: none; padding: 0; margin-block: 1.6rem 0; margin-inline-start: 0.5rem;
}
.about-article ol li {
  position: relative; padding-inline-start: 2rem; padding-block-end: 1.6rem;
  border-inline-start: 2px solid var(--line, rgba(200,148,30,0.28));
}
.about-article ol li::before {
  content: ""; position: absolute; inset-inline-start: -8px; inset-block-start: 4px;
  width: 13px; height: 13px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px var(--cream-2, #FAF6EC);
}
.about-article ol li:last-child { border-inline-start-color: transparent; padding-block-end: 0; }
/* CTA band */
.about-cta { background: var(--navy); color: #fff; }
.about-cta__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding-block: 2.8rem; flex-wrap: wrap;
}
.about-cta h2 { color: #fff; font-size: 1.5rem; margin: 0 0 0.4rem; }
.about-cta p { color: rgba(255,255,255,0.75); margin: 0; }
.about-cta__btn {
  background: var(--gold); color: #fff; padding: 0.85rem 1.9rem; border-radius: 10px;
  font-weight: 700; white-space: nowrap; transition: background 0.15s;
}
.about-cta__btn:hover { background: var(--gold-2, #E0B454); }
@media (max-width: 700px) { .about-article ul { grid-template-columns: 1fr; } }

/* ── About ── */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-intro__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: center/cover no-repeat var(--navy);
  border: 1px solid var(--gold);
}
.about-intro__media::before {
  content: ""; position: absolute;
  inset-block-end: -20px; inset-inline-end: -20px;
  width: 60%; height: 60%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-intro__media-tag {
  position: absolute;
  inset-block-end: 20px; inset-inline-start: 20px;
  background: var(--navy-deep); color: #fff;
  padding: 1rem 1.4rem;
  border: 1px solid var(--gold);
  font-family: var(--ff-en); font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.about-intro__media-tag b { color: var(--gold-2); font-family: var(--ff-en); font-size: 1.5rem; display: block; font-weight: 600; }

.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem;
  position: relative;
}
.value-card__icon {
  width: 56px; height: 56px;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center;
  margin-block-end: 1.2rem;
}
.value-card__icon svg { width: 30px; height: 30px; }
.value-card h3 { margin: 0 0 0.5rem; font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.value-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 0.94rem; }

.timeline {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.timeline::before {
  content: ""; position: absolute;
  inset-block-start: 24px; inset-inline-start: 5%; inset-inline-end: 5%;
  height: 1px; background: var(--line);
  z-index: 0;
}
.timeline__item { position: relative; padding-block-start: 4rem; z-index: 1; }
.timeline__dot {
  position: absolute; inset-block-start: 16px;
  inset-inline-start: 0;
  width: 16px; height: 16px;
  background: var(--gold); border: 3px solid var(--cream);
  border-radius: 50%;
}
.timeline__year { font-family: var(--ff-en); color: var(--gold); font-size: 1.6rem; font-weight: 600; }
.timeline__item h4 { margin: 0.4rem 0; font-size: 1.05rem; color: var(--navy); }
.timeline__item p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.7; }