/* ═══════════════════════════════════════════════════
   THE GREAT KEMET — Corporate Luxury Template
   Formal · Grid-based · Gold palette only
   ═══════════════════════════════════════════════════ */

:root {
  --gold: #c9a227;
  --gold-light: #e8d5a3;
  --gold-dark: #8a6d1f;
  --ink: #0c0d10;
  --ink-soft: #14161c;
  --ink-card: #1a1d26;
  --ink-border: #2a2e3a;
  --text: #eceef2;
  --text-muted: #9aa3b2;
  --wrap: min(1140px, 92vw);
  --header-h: 76px;
  --font-display: "Cinzel", "Amiri", serif;
  --font-serif: "Cormorant Garamond", "Amiri", serif;
  --font-sans: "Cairo", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-y: clamp(3.25rem, 8vw, 5.5rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body.tpl {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--text);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body[dir="rtl"] { font-family: var(--font-sans); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 13, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-border);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header__brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.header__brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--gold-light);
}

.header__brand-text small {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.header__menu {
  display: none;
  align-items: stretch;
}

@media (min-width: 900px) {
  .header__menu { display: flex; }
}

.header__nav {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: rgba(0, 0, 0, 0.25);
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.55rem 1.15rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-inline-start: 1px solid rgba(201, 162, 39, 0.15);
  transition: color 0.25s, background 0.25s;
}

.nav-link:first-child {
  border-inline-start: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 1rem;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.06);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-link--cta {
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.08);
}

.nav-link--cta::after {
  transform: scaleX(1);
  opacity: 0.6;
}

a.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.lang-btn {
  flex-shrink: 0;
  align-self: stretch;
  padding: 0 1rem;
  min-width: 3rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border: 1px solid var(--gold);
  border-inline-start: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}

.lang-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(201, 162, 39, 0.28);
  cursor: pointer;
  padding: 0;
  margin-inline-start: auto;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin-inline: auto;
  background: var(--gold-light);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--ink);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

body[dir="rtl"] .nav-drawer {
  transform: translateX(-100%);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer__nav {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.nav-drawer__nav .nav-link {
  padding: 1.1rem 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border-inline-start: none;
  border-block-end: 1px solid rgba(201, 162, 39, 0.12);
}

.nav-drawer__nav .nav-link:last-child {
  border-block-end: none;
}

.nav-drawer__nav .nav-link::after {
  inset-inline: 1.25rem;
  bottom: 0.65rem;
}

.lang-btn--drawer {
  width: 100%;
  min-height: 3rem;
  border-inline-start: 1px solid var(--gold);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.btn--sm { padding: 0.5rem 1rem; font-size: 0.78rem; }
.btn--lg { padding: 1rem 2rem; font-size: 0.95rem; }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--ink);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border-color: var(--ink-border);
  color: var(--gold-light);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--dark {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--ink);
}

.btn--dark:hover {
  background: var(--ink-soft);
}

/* ── Vault hero (unconventional + stats rail) ── */
.vault {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding: clamp(2rem, 5vh, 3.5rem) 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vault__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(12, 13, 16, 0.94) 0%,
      rgba(12, 13, 16, 0.82) 42%,
      rgba(12, 13, 16, 0.55) 100%
    ),
    url("../assets/images/hero/hero-refining.webp") center / cover no-repeat;
  pointer-events: none;
}

.vault__slash {
  position: absolute;
  inset-inline-end: -15%;
  top: 8%;
  width: 55%;
  height: 75%;
  background: linear-gradient(
    125deg,
    transparent 42%,
    rgba(201, 162, 39, 0.07) 46%,
    rgba(201, 162, 39, 0.14) 50%,
    rgba(201, 162, 39, 0.05) 54%,
    transparent 58%
  );
  transform: skewX(-8deg);
}

.vault__shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.25rem, 2.5vh, 1.75rem);
  grid-template-areas:
    "brand"
    "stage"
    "rail"
    "lead"
    "gates";
}

@media (min-width: 900px) {
  .vault__shell {
    grid-template-columns: minmax(5.5rem, 7.5rem) 1fr;
    grid-template-areas:
      "brand brand"
      "rail  stage"
      "rail  lead"
      "rail  gates";
    gap: clamp(1rem, 2vh, 1.5rem) clamp(2rem, 4vw, 3rem);
    align-items: start;
  }
}

.vault__brand { grid-area: brand; }

/* Stats rail — بعد العنوان على الجوال، عمودي على الجانب في الشاشات الكبيرة */
.vault__rail {
  grid-area: rail;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

@media (min-width: 900px) {
  .vault__rail {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 0;
    border-inline-end: 1px solid rgba(201, 162, 39, 0.3);
    padding-inline-end: clamp(1rem, 2vw, 1.75rem);
    align-self: stretch;
    justify-content: center;
  }
}

.vault__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.65rem 0.35rem;
  text-align: center;
  background: rgba(201, 162, 39, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.15);
}

@media (min-width: 900px) {
  .vault__metric {
    align-items: flex-end;
    text-align: end;
    padding: 1.1rem 0;
    background: none;
    border: none;
    border-block-end: 1px solid rgba(201, 162, 39, 0.12);
  }

  .vault__metric:last-child {
    border-block-end: none;
  }
}

.vault__metric-n {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
}

.vault__metric-l {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .vault__metric-l {
    font-size: 0.68rem;
    max-width: 6.5rem;
  }
}

.vault__brand {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 1.1vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (min-width: 900px) {
  .vault__brand {
    text-align: start;
  }
}

.vault__stage {
  grid-area: stage;
  position: relative;
  display: grid;
  gap: 1.25rem;
  align-items: end;
}

@media (min-width: 640px) {
  .vault__stage {
    grid-template-columns: minmax(140px, 28%) 1fr;
    gap: clamp(0.5rem, 2vw, 1.5rem);
  }
}

.vault__mark {
  position: relative;
  z-index: 2;
  justify-self: center;
  line-height: 0;
}

@media (min-width: 640px) {
  .vault__mark {
    justify-self: end;
    margin-inline-end: -1.5rem;
  }
}

.vault__logo {
  width: min(200px, 42vw);
  height: auto;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.55));
}

@media (min-width: 640px) {
  .vault__logo {
    width: min(240px, 100%);
  }
}

.vault__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.08;
  text-align: center;
}

@media (min-width: 640px) {
  .vault__title {
    text-align: start;
    align-self: center;
    padding-block: 0.5rem;
  }
}

.vault__t1 {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  color: rgba(236, 238, 242, 0.9);
}

.vault__t2 {
  display: block;
  font-size: clamp(2.1rem, 6vw, 3.85rem);
  color: var(--gold-light);
  margin-top: 0.08em;
  margin-inline-start: clamp(0, 4vw, 2rem);
}

.vault__lead {
  grid-area: lead;
  position: relative;
  max-width: 42rem;
  padding: 1.35rem 1.5rem 1.35rem 1.65rem;
  background: linear-gradient(
    125deg,
    rgba(201, 162, 39, 0.09) 0%,
    rgba(20, 22, 28, 0.75) 42%,
    rgba(12, 13, 16, 0.9) 100%
  );
  border: 1px solid rgba(201, 162, 39, 0.22);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.vault__lead::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 1.1rem;
  bottom: 1.1rem;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 162, 39, 0.15));
}

.vault__lead-text {
  margin: 0;
  font-size: clamp(0.94rem, 1.55vw, 1.08rem);
  line-height: 1.95;
  letter-spacing: 0.01em;
}

.vault__lead-kemet {
  font-family: var(--font-display);
  font-size: 1.05em;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

.vault__lead-rest {
  color: rgba(236, 238, 242, 0.72);
}

@media (min-width: 640px) {
  .vault__lead-kemet {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .vault__lead-rest {
    display: block;
    padding-inline-start: 0.15rem;
  }
}

.vault__gates {
  grid-area: gates;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 32rem;
}

.vault__gate {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  border: 1px solid var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  transition: transform 0.2s var(--ease), filter 0.25s;
}

.vault__gate:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.vault__gate--dim {
  color: var(--gold-light);
  background: transparent;
  border-color: rgba(201, 162, 39, 0.4);
}

.vault__gate--dim:hover {
  background: rgba(201, 162, 39, 0.08);
  filter: none;
}

.vault__gate-n {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.75;
}

/* ── Sections ── */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--ink-soft);
}

.section__head {
  margin-bottom: 3rem;
  max-width: 40rem;
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
}

.section__head--center .section__desc {
  margin-inline: auto;
}

.section__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.section__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Path section (non-traditional divisions layout) ── */
.path-section {
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(201, 162, 39, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(201, 162, 39, 0.05), transparent 50%),
    var(--ink-soft);
  overflow-x: clip;
  overflow-y: visible;
}

/* Editorial mast — pillars + journey (+ metals label) */
.pillars-mast,
.journey-mast {
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.journey-mast__grid,
.pillars-mast__grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: start;
}

@media (min-width: 768px) {
  .journey-mast__grid,
  .pillars-mast__grid {
    grid-template-columns: auto 1fr;
    gap: clamp(2rem, 4vw, 3.25rem);
  }
}

.journey-mast__label,
.pillars-mast__label,
.metals-atelier__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

@media (min-width: 768px) {
  .journey-mast__label,
  .pillars-mast__label,
  .metals-atelier__label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    padding-block: 0.5rem;
    border-inline-end: 1px solid rgba(201, 162, 39, 0.28);
    padding-inline-end: 1.5rem;
    text-align: start;
  }
}

.journey-mast__body,
.pillars-mast__body,
.metals-atelier__mast-body {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.journey-mast__pulse,
.pillars-mast__pulse {
  position: relative;
  overflow: hidden;
  padding: clamp(0.5rem, 2vw, 1rem) 0 clamp(1.25rem, 3vw, 2rem);
}

.journey-mast__pulse::before,
.pillars-mast__pulse::before {
  content: "";
  position: absolute;
  inset-inline-end: -8%;
  top: -25%;
  width: 42%;
  height: 150%;
  background: linear-gradient(
    120deg,
    transparent 42%,
    rgba(201, 162, 39, 0.1) 50%,
    transparent 58%
  );
  transform: skewX(-10deg);
  pointer-events: none;
}

.pillars-mast__pulse::after {
  content: "02";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}

.journey-mast__pulse::after {
  content: "04";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}

.journey-mast__headline,
.pillars-mast__headline {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1;
}

.journey-mast__line-a,
.pillars-mast__line-a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 10vw, 5rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: var(--gold);
}

.journey-mast__line-b,
.pillars-mast__line-b {
  display: block;
  margin-top: -0.08em;
  margin-inline-start: clamp(1.25rem, 16vw, 6.5rem);
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.85rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

@media (min-width: 900px) {
  .journey-mast__line-b,
  .pillars-mast__line-b {
    margin-inline-start: clamp(2.5rem, 20vw, 8rem);
  }
}

.pillars-mast__lede,
.metals-atelier__lede {
  margin: 0;
  max-width: 40rem;
  padding-block: 1.1rem;
  padding-inline-start: clamp(1.35rem, 3.5vw, 1.85rem);
  padding-inline-end: 0;
  font-size: clamp(0.96rem, 1.55vw, 1.08rem);
  line-height: 1.95;
  color: rgba(236, 238, 242, 0.82);
  border-inline-start: 3px solid var(--gold);
  background: linear-gradient(to inline-end, rgba(201, 162, 39, 0.07), transparent 75%);
}

/* ── Divide: twin-wing divisions layout ── */
.divide {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

@media (min-width: 900px) {
  .divide {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--ink-border);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.35);
  }
}

.divide__wing {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--ink-border);
  background: var(--ink-card);
}

@media (min-width: 900px) {
  .divide__wing {
    border: none;
  }

  .divide__wing--mining {
    border-inline-start: 1px solid var(--ink-border);
  }
}

.divide__wing::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 162, 39, 0.15) 55%, transparent);
  opacity: 0.85;
  pointer-events: none;
}

.divide__wing--mining::before {
  background: linear-gradient(180deg, var(--gold-light), rgba(232, 213, 163, 0.12) 50%, transparent);
  opacity: 0.65;
}

.divide__wing--waste {
  background:
    radial-gradient(ellipse 90% 55% at 100% 0%, rgba(201, 162, 39, 0.09), transparent 58%),
    var(--ink-card);
}

.divide__wing--mining {
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(232, 213, 163, 0.05), transparent 52%),
    linear-gradient(180deg, var(--ink-soft) 0%, var(--ink-card) 42%);
}

.divide__mast {
  position: relative;
  padding: 0;
  border-block-end: 1px solid rgba(201, 162, 39, 0.18);
}

.divide__mast-pulse {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 2.35rem) clamp(1.35rem, 3vw, 1.85rem) clamp(1.5rem, 3vw, 2rem);
}

.divide__mast-pulse::before {
  content: "";
  position: absolute;
  inset-inline-end: -12%;
  top: -30%;
  width: 50%;
  height: 160%;
  background: linear-gradient(
    118deg,
    transparent 44%,
    rgba(201, 162, 39, 0.09) 50%,
    transparent 56%
  );
  transform: skewX(-8deg);
  pointer-events: none;
}

.divide__num {
  position: absolute;
  inset-inline-start: clamp(0.5rem, 2vw, 1rem);
  top: 50%;
  transform: translateY(-52%);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.divide__mast-text {
  position: relative;
  z-index: 1;
  padding-inline-start: clamp(3.5rem, 14vw, 5.5rem);
}

.divide__mast-text h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--gold-light);
}

.divide__mast-text p {
  margin: 0;
  max-width: 22rem;
  font-size: clamp(0.88rem, 1.5vw, 0.96rem);
  line-height: 1.75;
  color: rgba(236, 238, 242, 0.72);
}

.divide__core {
  padding: clamp(1.35rem, 3vw, 1.85rem);
}

.divide__kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.divide__kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to inline-end, rgba(201, 162, 39, 0.45), transparent);
}

.divide__stream {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: stream;
  display: grid;
  gap: 0.5rem;
}

.divide__stream li {
  counter-increment: stream;
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem;
  font-size: clamp(0.86rem, 1.4vw, 0.92rem);
  line-height: 1.65;
  color: var(--text);
  background: rgba(12, 13, 16, 0.35);
  border: 1px solid var(--ink-border);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.divide__stream li::before {
  content: counter(stream, decimal-leading-zero);
  position: absolute;
  inset-inline-start: 0.45rem;
  top: 0.45rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(12, 13, 16, 0.75);
  border: 1px solid rgba(201, 162, 39, 0.45);
}

.divide__thumb {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 39, 0.25);
  filter: saturate(0.85) contrast(1.05);
}

.divide__pairs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.divide__pair {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: 0;
  overflow: hidden;
  background: rgba(12, 13, 16, 0.4);
  border: 1px solid var(--ink-border);
  border-inline-start: 3px solid rgba(201, 162, 39, 0.55);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.divide__pair-img {
  width: 100%;
  height: clamp(5.5rem, 18vw, 7.5rem);
  object-fit: cover;
  filter: saturate(0.9);
}

.divide__pair-text {
  padding: 0 1rem 1rem;
}

.divide__pair::before {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to inline-start, rgba(201, 162, 39, 0.04), transparent);
  pointer-events: none;
}

.divide__pair-text strong {
  position: relative;
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.5vw, 0.9rem);
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

.divide__pair-text span {
  position: relative;
  display: block;
  font-size: clamp(0.84rem, 1.4vw, 0.9rem);
  line-height: 1.7;
  color: rgba(236, 238, 242, 0.78);
}

.divide__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  padding: 1.1rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-block-start: 1px solid var(--ink-border);
  transition: background 0.3s var(--ease), color 0.3s, gap 0.3s var(--ease);
}

.divide__cta::after {
  content: "←";
  font-size: 0.9em;
  opacity: 0.7;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

[dir="ltr"] .divide__cta::after {
  content: "→";
}

.divide__cta--outline {
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.04);
}

.divide__cta--gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* ── Site-wide mobile & touch ── */
@media (max-width: 767px) {
  .pillars-mast,
  .journey-mast {
    margin-bottom: clamp(1.75rem, 5vw, 2.5rem);
  }

  .pillars-mast__label,
  .journey-mast__label,
  .metals-atelier__label {
    letter-spacing: 0.22em;
    font-size: 0.6rem;
  }

  .pillars-mast__pulse,
  .journey-mast__pulse {
    padding-block: 0.35rem 1.25rem;
  }

  .pillars-mast__pulse::after {
    font-size: clamp(3.5rem, 28vw, 5.5rem);
    inset-inline-start: -0.02em;
    bottom: -0.05em;
  }

  .journey-mast__pulse::after {
    font-size: clamp(3rem, 24vw, 4.5rem);
  }

  .pillars-mast__line-a,
  .journey-mast__line-a {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    letter-spacing: 0.04em;
  }

  .pillars-mast__line-b,
  .journey-mast__line-b {
    margin-inline-start: clamp(0.75rem, 10vw, 2.5rem);
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .pillars-mast__lede,
  .metals-atelier__lede {
    padding-block: 0.95rem;
    padding-inline-start: clamp(1.1rem, 4vw, 1.35rem);
    padding-inline-end: 0;
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .metals-atelier__five {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .metals-atelier__tail {
    margin-inline-start: clamp(0.75rem, 10vw, 2.5rem);
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .metals-atelier__pulse::after {
    font-size: clamp(3.5rem, 26vw, 5rem);
  }

  .specimen {
    min-height: 9rem;
    padding: 1.1rem 0.65rem;
  }

  .journey-step__card {
    max-width: none;
  }

  .heritage__grid {
    gap: 1rem;
  }

  .heritage__logo {
    width: min(200px, 55vw);
  }

  .heritage__title {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }

  .faq-item summary {
    font-size: 0.82rem;
    padding: 0.95rem 1rem;
  }

  .cta-band__inner {
    gap: 1.5rem;
  }

  .vault__gates {
    max-width: none;
  }

  .vault__gate {
    padding: 0.9rem 0.75rem;
    font-size: 0.72rem;
  }

  .vault__lead {
    padding: 1.1rem 1rem 1.1rem 1.15rem;
  }

  .divide {
    gap: 1rem;
  }

  .divide__wing {
    border-radius: 2px;
  }

  .divide__mast-pulse {
    padding: 1.35rem 1rem 1.2rem;
  }

  .divide__mast-pulse::before {
    width: 65%;
    inset-inline-end: -18%;
  }

  .divide__num {
    position: relative;
    inset: auto;
    top: auto;
    transform: none;
    display: block;
    margin: 0 0 0.35rem;
    font-size: clamp(2.5rem, 12vw, 3.5rem);
    line-height: 1;
    opacity: 0.14;
  }

  .divide__mast-text {
    padding-inline-start: 0;
  }

  .divide__mast-text h3 {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
    line-height: 1.25;
    text-wrap: balance;
  }

  .divide__mast-text p {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .divide__core {
    padding: 1.15rem 1rem 1.25rem;
  }

  .divide__kicker {
    gap: 0.65rem;
    margin-bottom: 0.95rem;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .divide__stream {
    gap: 0.45rem;
  }

  .divide__stream li {
    grid-template-columns: 4rem 1fr;
    align-items: start;
    gap: 0.65rem;
    padding: 0.65rem;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .divide__thumb {
    width: 4rem;
    height: 4rem;
  }

  .divide__stream li::before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.58rem;
  }

  .divide__pair {
    padding: 1rem 0.85rem;
  }

  .divide__pair strong {
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    line-height: 1.35;
  }

  .divide__pair span {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .divide__cta {
    min-height: 3rem;
    padding: 0.95rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-align: center;
    text-wrap: balance;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .divide__stream li,
  .divide__pair,
  .divide__cta {
    transition: none;
  }
}

@media (max-width: 380px) {
  .pillars-mast__line-b,
  .journey-mast__line-b,
  .metals-atelier__tail {
    margin-inline-start: 0.5rem;
  }

  .divide__stream li {
    grid-template-columns: 2.35rem 1fr;
    padding: 0.8rem 0.65rem;
  }

  .divide__cta {
    flex-wrap: wrap;
    row-gap: 0.35rem;
    letter-spacing: 0.06em;
  }
}

@media (hover: hover) and (pointer: fine) {
  .divide__stream li:hover {
    background: rgba(201, 162, 39, 0.06);
    border-color: rgba(201, 162, 39, 0.35);
  }

  .divide__pair:hover {
    background: rgba(201, 162, 39, 0.05);
    border-color: rgba(201, 162, 39, 0.28);
  }

  .divide__cta:hover {
    gap: 0.9rem;
  }

  .divide__cta:hover::after {
    opacity: 1;
  }

  .divide__cta--outline:hover {
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold-light);
  }

  .divide__cta--gold:hover {
    filter: brightness(1.08);
  }
}

@media (hover: none) {
  .divide__cta:active {
    opacity: 0.92;
  }

  .divide__stream li:active {
    background: rgba(201, 162, 39, 0.06);
  }

  .divide__pair:active {
    background: rgba(201, 162, 39, 0.05);
  }
}

/* ── Metals atelier (professional specimen layout) ── */
.metals-atelier {
  padding: var(--section-y) 0;
  background: var(--ink);
  border-block: 1px solid var(--ink-border);
}

.metals-atelier__layout {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.metals-atelier__mast {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: start;
}

@media (min-width: 768px) {
  .metals-atelier__mast {
    grid-template-columns: auto 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.metals-atelier__pulse {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}

@media (min-width: 768px) {
  .metals-atelier__pulse {
    margin-inline: 0;
    padding-inline-start: 0.5rem;
  }
}

.metals-atelier__pulse::before {
  content: "";
  position: absolute;
  inset-inline-end: -5%;
  top: -20%;
  width: 45%;
  height: 140%;
  background: linear-gradient(
    125deg,
    transparent 40%,
    rgba(201, 162, 39, 0.12) 48%,
    rgba(201, 162, 39, 0.06) 52%,
    transparent 60%
  );
  transform: skewX(-12deg);
  pointer-events: none;
}

.metals-atelier__pulse::after {
  content: "05";
  position: absolute;
  inset-inline-start: -0.05em;
  bottom: -0.15em;
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 11rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.metals-atelier__headline {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1;
}

.metals-atelier__five {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.75rem, 16vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: var(--gold);
}

.metals-atelier__tail {
  display: block;
  margin-top: -0.12em;
  margin-inline-start: clamp(1.5rem, 18vw, 7rem);
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 5.5vw, 3.25rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

@media (min-width: 900px) {
  .metals-atelier__tail {
    margin-inline-start: clamp(3rem, 22vw, 9rem);
  }
}

.metals-atelier__specimens {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--ink-border);
}

@media (min-width: 640px) {
  .metals-atelier__specimens {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .metals-atelier__specimens {
    grid-template-columns: repeat(5, 1fr);
  }
}

.specimen {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  align-items: center;
  justify-items: center;
  gap: 0.35rem;
  min-height: clamp(12rem, 26vw, 15rem);
  padding: 0 0 1rem;
  text-align: center;
  background: var(--ink-card);
  border-block-end: 1px solid var(--ink-border);
  border-inline-start: 1px solid var(--ink-border);
  overflow: hidden;
  transition: background 0.3s var(--ease);
}

.specimen__img {
  width: 100%;
  height: clamp(4.5rem, 14vw, 5.75rem);
  object-fit: cover;
  border-block-end: 1px solid var(--ink-border);
  filter: saturate(0.88) brightness(0.92);
}

.specimen:nth-child(odd) {
  background: var(--ink-soft);
}

@media (min-width: 960px) {
  .specimen {
    border-block-end: none;
  }

  .specimen:nth-child(odd) {
    background: var(--ink-card);
  }

  .specimen:nth-child(even) {
    background: var(--ink-soft);
  }
}

@media (hover: hover) and (pointer: fine) {
  .specimen:hover {
    background: rgba(201, 162, 39, 0.06);
  }
}

.specimen__z {
  justify-self: end;
  align-self: start;
  width: 100%;
  padding-inline-end: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-align: end;
}

.specimen__sym {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.specimen__name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* ── Journey section (non-traditional process timeline) ── */
.journey-section {
  padding: 5rem 0 6rem;
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 18%, var(--ink-soft) 82%, var(--ink) 100%);
  overflow: hidden;
}

.journey-section__intro {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 36rem;
  margin-inline: auto;
}

.journey-chain {
  list-style: none;
  margin: 0;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  max-width: 52rem;
  margin-inline: auto;
  position: relative;
}

.journey-chain::before {
  content: "";
  position: absolute;
  inset-inline-start: 1.1rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--gold) 8%,
    var(--gold) 92%,
    transparent
  );
  opacity: 0.4;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.journey-step:last-child {
  margin-bottom: 0;
}

.journey-step__node {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--ink-soft), 0 0 16px rgba(201, 162, 39, 0.35);
}

.journey-step__img {
  display: block;
  width: calc(100% + 1.5rem + 1.25rem);
  max-width: none;
  height: clamp(6.5rem, 22vw, 8.5rem);
  margin: 0 -1.25rem 0.85rem -1.5rem;
  object-fit: cover;
  border-block-end: 1px solid var(--ink-border);
  filter: saturate(0.9);
}

.journey-step__card {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  padding: 0 1.25rem 1.35rem 1.5rem;
  max-width: 22rem;
  overflow: hidden;
  background: linear-gradient(
    120deg,
    rgba(201, 162, 39, 0.1) 0%,
    var(--ink-card) 45%
  );
  border: 1px solid var(--ink-border);
  border-inline-start: 2px solid rgba(201, 162, 39, 0.5);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.75rem), calc(100% - 0.75rem) 100%, 0 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.journey-step__card::before {
  position: absolute;
  inset-inline-end: 0.15rem;
  top: -0.35rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: 0.07;
  pointer-events: none;
}

.journey-step:nth-child(1) .journey-step__card::before { content: "01"; }
.journey-step:nth-child(2) .journey-step__card::before { content: "02"; }
.journey-step:nth-child(3) .journey-step__card::before { content: "03"; }
.journey-step:nth-child(4) .journey-step__card::before { content: "04"; }

@media (min-width: 768px) {
  .journey-step:nth-child(odd) .journey-step__card {
    transform: rotate(-0.6deg);
  }

  .journey-step:nth-child(even) .journey-step__card {
    transform: rotate(0.6deg);
    border-inline-start-color: var(--gold);
  }
}

.journey-step:nth-child(even) .journey-step__card {
  border-inline-start-color: var(--gold);
}

.journey-step__card h3,
.journey-step__card h4 {
  position: relative;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  margin-bottom: 0.45rem;
}

.journey-step__card p {
  position: relative;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.journey-step--finale .journey-step__node {
  width: 2.6rem;
  height: 2.6rem;
  font-size: 0.85rem;
  box-shadow:
    0 0 0 4px var(--ink-soft),
    0 0 24px rgba(201, 162, 39, 0.55);
}

.journey-step--finale .journey-step__card {
  border-color: rgba(201, 162, 39, 0.45);
  border-inline-start-width: 3px;
  border-inline-start-color: var(--gold);
  background: linear-gradient(
    120deg,
    rgba(201, 162, 39, 0.16) 0%,
    var(--ink-card) 50%
  );
}

@media (min-width: 768px) {
  .journey-chain {
    max-width: 56rem;
    padding-inline: clamp(2rem, 5vw, 3rem);
  }

  .journey-chain::before {
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 1px;
  }

  [dir="rtl"] .journey-chain::before {
    transform: translateX(50%);
  }

  .journey-step {
    grid-template-columns: 1fr auto 1fr;
    gap: 0 2rem;
    align-items: center;
    margin-bottom: 3rem;
  }

  .journey-step__node {
    grid-column: 2;
    grid-row: 1;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 0.9rem;
    margin-top: 0;
  }

  .journey-step__card {
    grid-row: 1;
    max-width: 17.5rem;
    padding: 1.5rem 1.35rem;
  }

  .journey-step:nth-child(odd) .journey-step__card {
    grid-column: 1;
    justify-self: end;
    margin-inline-end: 0;
    text-align: end;
    border-inline-start: none;
    border-inline-end: 2px solid rgba(201, 162, 39, 0.5);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0.75rem 100%, 0 calc(100% - 0.75rem));
  }

  .journey-step:nth-child(even) .journey-step__card {
    grid-column: 3;
    justify-self: start;
    border-inline-start: 2px solid var(--gold);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.75rem), calc(100% - 0.75rem) 100%, 0 100%);
  }

  .journey-step:nth-child(odd) .journey-step__card::before {
    inset-inline-end: auto;
    inset-inline-start: 0.15rem;
  }

  .journey-step:nth-child(odd) .journey-step__card::after,
  .journey-step:nth-child(even) .journey-step__card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1.75rem;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.45;
  }

  .journey-step:nth-child(odd) .journey-step__card::after {
    inset-inline-end: 100%;
    margin-inline-end: 0.35rem;
    background: linear-gradient(to left, var(--gold), transparent);
  }

  .journey-step:nth-child(even) .journey-step__card::after {
    inset-inline-start: 100%;
    margin-inline-start: 0.35rem;
    background: linear-gradient(to right, var(--gold), transparent);
  }

  .journey-step--finale .journey-step__card {
    max-width: 19rem;
  }
}

/* ── Heritage (about section) ── */
.heritage {
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 50%, rgba(201, 162, 39, 0.08), transparent 58%),
    var(--ink);
  border-block-start: 1px solid var(--ink-border);
}

.heritage__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 900px) {
  .heritage__grid {
    grid-template-columns: minmax(240px, 34%) 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

.heritage__crest {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(14rem, 40vw, 18rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  overflow: hidden;
  background: var(--ink-card);
  border: 1px solid var(--ink-border);
}

.heritage__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.75);
}

.heritage__crest::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 13, 16, 0.2), rgba(12, 13, 16, 0.85));
  pointer-events: none;
}

.heritage__logo {
  position: relative;
  z-index: 1;
  width: min(200px, 50vw);
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.5));
}

.heritage__body {
  position: relative;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--ink-card);
  border: 1px solid var(--ink-border);
  border-inline-start: 3px solid var(--gold);
}

.heritage__badge {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.heritage__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em 0.5em;
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.heritage__dot {
  font-family: var(--font-display);
  font-size: 1.1em;
  color: var(--gold);
  opacity: 0.9;
}

.heritage__title span:not(.heritage__dot) {
  color: var(--gold-light);
}

.heritage__panel {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.heritage__lead {
  margin: 0 0 1.15rem;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  font-weight: 500;
  line-height: 1.95;
  color: rgba(236, 238, 242, 0.92);
}

.heritage__note {
  margin: 0;
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  line-height: 1.9;
  color: var(--text-muted);
  padding-inline-start: 1rem;
  border-inline-start: 2px solid rgba(201, 162, 39, 0.35);
}

/* ── FAQ ── */
.faq-section {
  padding: var(--section-y) 0;
  background: var(--ink-soft);
  border-block: 1px solid var(--ink-border);
}

.faq-section__inner {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 40rem;
}

.faq-section__inner .section__label {
  margin-bottom: 0;
}

.faq-section__inner .section__title {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.faq-list {
  display: grid;
  gap: 0.5rem;
}

.faq-item {
  background: var(--ink-card);
  border: 1px solid var(--ink-border);
  transition: border-color 0.25s var(--ease);
}

.faq-item[open] {
  border-color: rgba(201, 162, 39, 0.35);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.1rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.faq-item a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item a:hover {
  color: var(--gold);
}

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: var(--section-y) 0;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band .section__label {
  color: rgba(12, 13, 16, 0.65);
}

.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(12, 13, 16, 0.75);
  max-width: 28rem;
  font-size: 0.95rem;
}

/* ── Footer ── */
.footer {
  background: var(--ink-soft);
  border-top: 1px solid var(--ink-border);
  padding-top: 3rem;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 700px) {
  .footer__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__brand img { width: 44px; }

.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.footer__brand span {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--gold-light); }

.footer__bottom {
  padding: 1.25rem 0;
  border-top: 1px solid var(--ink-border);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ── Journey mast (matches pillars pattern) ── */
.journey-mast__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .journey-mast__grid {
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 2rem;
  }
}

.journey-mast__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.journey-mast__headline {
  margin: 0;
  line-height: 1.05;
}

.journey-mast__line-a,
.journey-mast__line-b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-light);
}

.journey-mast__line-a { font-size: clamp(1.5rem, 4vw, 2.25rem); }
.journey-mast__line-b { font-size: clamp(1.25rem, 3vw, 1.85rem); opacity: 0.85; }

/* ── FAQ ── */
.faq-section {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.04));
}

.faq-section__inner .section__title { margin-bottom: 1.5rem; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 42rem;
}

.faq-item {
  border: 1px solid rgba(201, 162, 39, 0.2);
  background: rgba(0, 0, 0, 0.2);
  padding: 0.25rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
  color: var(--gold-light);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-item a { color: var(--gold); text-decoration: underline; }
