/* ==========================================================================
   Dubai Secret Wealth — premium editorial theme
   Brand palette derived from the existing product artwork (black + gold)
   ========================================================================== */

/* ---------- Reset & tokens ---------- */
*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Brand */
  --ink:        #0c0e12;
  --ink-2:      #161a21;
  --ink-3:      #232935;
  --gold:       #c9a227;
  --gold-lite:  #f0c94b;
  --gold-deep:  #8f6f12;
  --crimson:    #c0392b;
  --crimson-dk: #97281c;

  /* Surfaces */
  --paper:      #ffffff;
  --paper-2:    #faf8f3;
  --paper-3:    #f2eee4;
  --line:       #e4dfd3;
  --line-soft:  #efeae0;

  /* Text */
  --text:       #1c2029;
  --text-2:     #4c5361;
  --text-3:     #767d8b;
  --on-dark:    #f4f1ea;
  --on-dark-2:  #b9b3a5;

  /* Utility */
  --ok:         #157347;
  --ok-bg:      #eaf6ef;
  --warn:       #8a6100;
  --warn-bg:    #fdf5e2;

  --radius:     14px;
  --radius-lg:  22px;
  --shadow:     0 1px 2px rgba(12,14,18,.05), 0 8px 24px rgba(12,14,18,.06);
  --shadow-lg:  0 2px 6px rgba(12,14,18,.06), 0 24px 60px rgba(12,14,18,.13);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1160px;
  --wrap-narrow: 820px;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { color: var(--crimson); }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -.015em;
  font-weight: 700;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.7vw, 3.35rem); }
h2 { font-size: clamp(1.55rem, 1.15rem + 1.7vw, 2.35rem); }
h3 { font-size: clamp(1.22rem, 1.05rem + .8vw, 1.6rem); }
h4 { font-size: clamp(1.08rem, 1rem + .4vw, 1.25rem); }
p  { margin: 0 0 1.1em; overflow-wrap: break-word; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--ink); }
small { font-size: .84em; }

ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin-bottom: .5em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

::selection { background: var(--gold-lite); color: var(--ink); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.wrap-narrow { width: 100%; max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: 20px; }

section { padding: clamp(2.6rem, 1.5rem + 4vw, 5rem) 0; }
section.tight { padding-block: clamp(2rem, 1.2rem + 2.5vw, 3.2rem); }

.band-cream { background: var(--paper-2); }
.band-sand  { background: var(--paper-3); }
.band-dark  { background: var(--ink); color: var(--on-dark); }
.band-dark h1, .band-dark h2, .band-dark h3, .band-dark h4 { color: #fff; }
.band-dark p, .band-dark li { color: var(--on-dark); }
.band-dark a { color: var(--gold-lite); }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 .9rem;
}
.band-dark .eyebrow { color: var(--gold-lite); }

.lede { font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem); color: var(--text-2); }
.band-dark .lede { color: var(--on-dark-2); }

.section-head { max-width: 780px; margin-bottom: 2.4rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.rule-gold {
  width: 62px; height: 3px; border: 0; border-radius: 3px; margin: 0 0 1.4rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-lite));
}
.section-head.center .rule-gold { margin-inline: auto; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,14,18,.97);
  border-bottom: 1px solid rgba(201,162,39,.28);
  backdrop-filter: saturate(140%) blur(8px);
}
.nav {
  display: flex; align-items: center; gap: 1rem;
  min-height: 68px;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--serif); font-weight: 700; font-size: 1.14rem;
  color: #fff; text-decoration: none; letter-spacing: -.01em; line-height: 1.15;
  margin-right: auto; padding: .4rem 0;
}
.brand:hover { color: var(--gold-lite); }
.brand .brand-mark {
  width: 30px; height: 30px; flex: none; border-radius: 8px;
  background: linear-gradient(150deg, var(--gold-lite), var(--gold-deep));
  color: var(--ink); font-family: var(--sans); font-weight: 800; font-size: .84rem;
  display: grid; place-items: center;
}
.brand span.brand-sub { display: block; font-family: var(--sans); font-size: .64rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--gold-lite); }

.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,.28);
  border-radius: 9px; color: #fff; padding: .5rem .7rem; cursor: pointer; line-height: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }

.nav-menu { display: flex; align-items: center; gap: .5rem; }
.nav-links { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: .5rem .72rem; border-radius: 8px;
  color: #ded9cd; font-size: .93rem; font-weight: 500; text-decoration: none;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.09); }
.nav-links a[aria-current="page"] { color: var(--gold-lite); }
.nav-cta { margin-left: .5rem; }

@media (max-width: 1080px) {
  .nav-links a { padding: .5rem .55rem; font-size: .88rem; }
}

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ink-2); border-bottom: 1px solid rgba(201,162,39,.3);
    padding: .6rem 20px 1.1rem;
  }
  .nav-menu.open { display: block; }
  .site-header .wrap { position: relative; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: .75rem .5rem; border-bottom: 1px solid rgba(255,255,255,.07); border-radius: 0; }
  .nav-cta { margin: .9rem 0 0; display: block; }
  .nav-cta .btn { width: 100%; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 700; font-size: .97rem; line-height: 1.25;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, #f3d260, var(--gold) 55%, #a8811a);
  color: #1a1405; box-shadow: 0 6px 20px rgba(201,162,39,.34);
}
.btn-gold:hover { color: #1a1405; box-shadow: 0 10px 30px rgba(201,162,39,.45); }

.btn-crimson { background: var(--crimson); color: #fff; box-shadow: 0 6px 20px rgba(192,57,43,.3); }
.btn-crimson:hover { background: var(--crimson-dk); color: #fff; }

.btn-outline { border-color: var(--ink-3); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }

.band-dark .btn-outline,
.hero .btn-outline,
.offer-card .btn-outline { border-color: rgba(255,255,255,.45); color: #fff; }
.band-dark .btn-outline:hover,
.hero .btn-outline:hover,
.offer-card .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-lg { font-size: 1.06rem; padding: 1.05rem 2rem; }
.btn-sm { font-size: .86rem; padding: .6rem 1.1rem; }
.btn-block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.btn-row.center { justify-content: center; }

.btn-note { font-size: .84rem; color: var(--text-3); margin: .85rem 0 0; }
.band-dark .btn-note { color: var(--on-dark-2); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 460px at 82% 8%, rgba(201,162,39,.20), transparent 62%),
    radial-gradient(700px 420px at 8% 96%, rgba(201,162,39,.10), transparent 60%),
    var(--ink);
  color: var(--on-dark);
  padding-block: clamp(2.6rem, 1.4rem + 4.5vw, 4.6rem);
  border-bottom: 1px solid rgba(201,162,39,.3);
}
.hero h1 { color: #fff; margin-bottom: .5rem; }
.hero .hero-grid {
  display: grid; gap: clamp(1.8rem, 1rem + 3vw, 3.2rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 900px) { .hero .hero-grid { grid-template-columns: 1.08fr .92fr; } }
.hero p { color: var(--on-dark-2); }
.hero .hero-sub { font-size: clamp(1.02rem, .98rem + .3vw, 1.16rem); color: #ded8c9; }
.hero-figure { position: relative; }
.hero-figure img { margin-inline: auto; filter: drop-shadow(0 26px 50px rgba(0,0,0,.55)); }

.hero-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.2rem; padding: 0; list-style: none; }
.hero-meta li {
  margin: 0; font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  padding: .34rem .8rem; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(201,162,39,.34); color: #efe8d6;
}

.hero-facts {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .8rem;
  margin: 1.6rem 0 0; padding: 1.2rem 0 0; border-top: 1px solid rgba(255,255,255,.13);
  list-style: none;
}
@media (min-width: 620px) { .hero-facts { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.hero-facts li { margin: 0; }
.hero-facts .k { display: block; font-family: var(--serif); font-size: 1.22rem; color: var(--gold-lite); font-weight: 700; }
.hero-facts .v { display: block; font-size: .78rem; color: var(--on-dark-2); letter-spacing: .03em; }

/* ---------- Prose ---------- */
.prose > * + h2 { margin-top: 2.6rem; }
.prose > * + h3 { margin-top: 2rem; }
.prose h2 { padding-top: .3rem; }
.prose ul, .prose ol { color: var(--text-2); }
.prose li strong { color: var(--ink); }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 1.8rem auto; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
@media (min-width: 700px)  { .grid.g2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 700px)  { .grid.g3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1000px) { .grid.g3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 700px)  { .grid.g4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1000px) { .grid.g4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.45rem; box-shadow: var(--shadow);
}
.card h3, .card h4 { margin-bottom: .55rem; }
.card p { color: var(--text-2); margin-bottom: .8rem; font-size: .97rem; }
.card .card-num {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(150deg, var(--gold-lite), var(--gold-deep)); color: var(--ink);
  font-weight: 800; font-size: .92rem; margin-bottom: .85rem; font-family: var(--sans);
}
.band-dark .card { background: var(--ink-2); border-color: rgba(255,255,255,.11); box-shadow: none; }
.band-dark .card p { color: var(--on-dark-2); }

.card-flat { background: var(--paper-2); border: 1px solid var(--line-soft); box-shadow: none; }

/* Split media rows */
.split {
  display: grid; gap: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.media-right .split-media { order: 2; }
  .split.narrow-media { grid-template-columns: .8fr 1.2fr; }
}
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); margin-inline: auto; }
.split-media.plain img { box-shadow: none; }
.split-body p { color: var(--text-2); }
.band-dark .split-body p { color: var(--on-dark-2); }

figure { margin: 0; }
figcaption { font-size: .84rem; color: var(--text-3); margin-top: .7rem; text-align: center; }
.band-dark figcaption { color: var(--on-dark-2); }

/* ---------- Bonus / product rows ---------- */
.bonus {
  display: grid; gap: 1.6rem; grid-template-columns: 1fr; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: var(--shadow); margin-bottom: 1.3rem;
}
@media (min-width: 780px) { .bonus { grid-template-columns: 210px 1fr; padding: 2rem; gap: 2.2rem; } }
.bonus img { margin-inline: auto; filter: drop-shadow(0 16px 28px rgba(12,14,18,.22)); }
.bonus h3 { margin-bottom: .3rem; }
.bonus .bonus-tag {
  display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold-deep); background: #fbf4dd; border: 1px solid #ecdca8;
  padding: .25rem .65rem; border-radius: 999px; margin-bottom: .7rem;
}
.bonus p { color: var(--text-2); }
.bonus ul { margin-bottom: .9rem; }

/* ---------- Price / offer ---------- */
.offer-card {
  background: linear-gradient(165deg, var(--ink-2), var(--ink));
  border: 1px solid rgba(201,162,39,.45); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem); color: var(--on-dark); text-align: center;
  box-shadow: var(--shadow-lg);
}
.offer-card h2, .offer-card h3 { color: #fff; }
.offer-card p { color: var(--on-dark-2); }
.price-old { font-size: 1.15rem; color: #9a9384; text-decoration: line-through; }
.price-now {
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(3rem, 2rem + 5vw, 4.6rem);
  background: linear-gradient(135deg, #f6dd7d, var(--gold) 65%, #a8811a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin: .3rem 0 .1rem;
}
.price-caption { font-size: .9rem; color: var(--on-dark-2); }

.pay-badges { display: flex; flex-wrap: wrap; gap: .45rem; justify-content: center; list-style: none; margin: 1.3rem 0 0; padding: 0; }
.pay-badges li {
  margin: 0; font-size: .76rem; font-weight: 600; color: #ded8c9;
  border: 1px solid rgba(255,255,255,.2); border-radius: 7px; padding: .34rem .7rem;
  background: rgba(255,255,255,.05);
}

/* ---------- Callouts ---------- */
.callout {
  border-left: 4px solid var(--gold); background: var(--paper-2);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.2rem 1.4rem; margin: 1.6rem 0;
}
.callout p { color: var(--text-2); margin-bottom: .6rem; }
.callout .callout-title {
  font-family: var(--sans); font-weight: 800; font-size: .76rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: .5rem;
}
.callout.neutral { border-left-color: var(--ink-3); }
.callout.neutral .callout-title { color: var(--ink); }
.band-dark .callout { background: rgba(255,255,255,.05); }
.band-dark .callout p { color: var(--on-dark-2); }

/* ---------- Pros / cons ---------- */
.pc-list { list-style: none; padding: 0; margin: 0; }
.pc-list li { position: relative; padding-left: 1.9rem; margin-bottom: .75rem; color: var(--text-2); }
.pc-list li::before {
  position: absolute; left: 0; top: .05em; font-weight: 800; font-size: 1.05rem;
}
.pc-pros li::before { content: "✓"; color: var(--ok); }
.pc-cons li::before { content: "!"; color: var(--warn); }
.pc-card.pros { border-top: 4px solid var(--ok); }
.pc-card.cons { border-top: 4px solid var(--gold); }

/* ---------- Tables ---------- */
/* The table sits on a white surface even inside .band-dark, so every colour
   here is set explicitly rather than inherited from the surrounding band. */
.table-scroll {
  overflow-x: auto; margin: 1.6rem 0; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--paper); color: var(--text);
}
table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: .95rem; }
th, td { text-align: left; padding: .85rem 1.05rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
td { color: var(--text-2); }
thead th { background: var(--paper-3); font-family: var(--sans); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; color: var(--text-2); }
tbody th { color: var(--ink); }
tbody tr:last-child td { border-bottom: 0; }
td strong, th strong { color: var(--ink); }
td em, td a { color: inherit; }
td a { color: var(--gold-deep); }
.table-scroll caption { color: var(--text-3); }
.band-dark .table-scroll,
.band-dark .table-scroll td,
.band-dark .table-scroll caption { color: var(--text-2); }
.band-dark .table-scroll td strong,
.band-dark .table-scroll th { color: var(--ink); }
.band-dark .table-scroll thead th { color: var(--text-2); }

/* ---------- FAQ (native details) ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 3rem 1.1rem 1.3rem; position: relative;
  font-family: var(--serif); font-weight: 700; font-size: 1.06rem; color: var(--ink); line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.3rem; top: 1.45rem;
  width: 10px; height: 10px; border-right: 2.2px solid var(--gold-deep); border-bottom: 2.2px solid var(--gold-deep);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.7rem; }
.faq summary:hover { background: var(--paper-2); }
.faq .faq-body { padding: 0 1.6rem 1.35rem 1.3rem; color: var(--text-2); }
.faq .faq-body p { font-size: .98rem; }

/* ---------- Research references ---------- */
.ref-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.ref-list li {
  margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1.3rem; box-shadow: var(--shadow);
}
.ref-list .ref-title { font-family: var(--serif); font-weight: 700; font-size: 1.03rem; color: var(--ink); display: block; margin-bottom: .3rem; line-height: 1.4; }
.ref-list .ref-meta { display: block; font-size: .84rem; color: var(--text-3); margin-bottom: .55rem; }
.ref-list .ref-why { font-size: .93rem; color: var(--text-2); margin: 0 0 .6rem; }
.ref-list a.ref-link { font-size: .86rem; font-weight: 600; word-break: break-word; }

/* ---------- Testimonials ---------- */
.quote-card { display: grid; gap: 1rem; grid-template-columns: minmax(0,1fr); align-items: start; }
@media (min-width: 620px) { .quote-card { grid-template-columns: 92px minmax(0,1fr); gap: 1.1rem; } }
/* Portraits are normalised to a circle so mixed source aspect ratios stay consistent */
.quote-card img {
  width: 92px; height: 92px; aspect-ratio: 1 / 1;
  object-fit: cover; object-position: center;
  border-radius: 50%; border: 2px solid var(--line-soft);
}
.quote-card .stars {
  color: var(--gold); letter-spacing: .06em; font-size: .92rem; line-height: 1.4;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .45rem; margin-bottom: .1rem;
}
.quote-card .stars .verified {
  font-family: var(--sans); font-size: .68rem; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; color: var(--text-3); white-space: nowrap;
}
.quote-card .q-name { font-family: var(--serif); font-weight: 700; font-size: 1rem; color: var(--ink); margin: 0 0 .3rem; line-height: 1.35; }
.quote-card blockquote { margin: .5rem 0 0; font-family: var(--serif); font-size: 1.02rem; color: var(--text); line-height: 1.6; }
.quote-card cite { font-style: normal; font-size: .88rem; color: var(--text-3); font-weight: 600; }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: .84rem; color: var(--text-3); padding: 1rem 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "›"; margin-right: .4rem; color: var(--line); }
.crumbs a { color: var(--text-2); text-decoration: none; }
.crumbs a:hover { color: var(--gold-deep); text-decoration: underline; }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }
.band-dark .crumbs, .hero .crumbs { color: var(--on-dark-2); }
.hero .crumbs a { color: #cfc8b8; }
.hero .crumbs [aria-current="page"] { color: var(--gold-lite); }
.hero .crumbs li + li::before { color: rgba(255,255,255,.3); }

/* ---------- Related links ---------- */
.related { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .related { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.related a.related-card {
  display: block; text-decoration: none; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.4rem; box-shadow: var(--shadow); color: var(--text);
  transition: border-color .16s ease, transform .16s ease;
}
.related a.related-card:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--text); }
.related .related-kicker { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); display: block; margin-bottom: .45rem; }
.related .related-title { font-family: var(--serif); font-weight: 700; font-size: 1.12rem; color: var(--ink); display: block; margin-bottom: .4rem; }
.related p { font-size: .92rem; color: var(--text-2); margin: 0; }

/* ---------- Trust strip ---------- */
.trust-strip { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0,1fr)); list-style: none; margin: 0; padding: 0; }
@media (min-width: 860px) { .trust-strip { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.trust-strip li { margin: 0; text-align: center; padding: 1.2rem .8rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.trust-strip .t-k { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--gold-lite); font-weight: 700; margin-bottom: .2rem; }
.trust-strip .t-v { display: block; font-size: .84rem; color: var(--on-dark-2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark-2); padding: clamp(2.6rem, 2rem + 2vw, 4rem) 0 2rem; font-size: .93rem; }
.site-footer h2, .site-footer h3 { color: #fff; font-size: .8rem; font-family: var(--sans); font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: #cdc7ba; text-decoration: none; }
.site-footer a:hover { color: var(--gold-lite); text-decoration: underline; }
.site-footer p { color: var(--on-dark-2); }
.footer-legal { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; line-height: 1.65; }
.footer-legal p { color: #9c968a; margin-bottom: .9rem; }
.footer-brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--serif); font-size: 1.15rem; color: #fff; text-decoration: none; margin-bottom: .9rem; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(12,14,18,.97); border-top: 1px solid rgba(201,162,39,.4);
  padding: .7rem 16px calc(.7rem + env(safe-area-inset-bottom));
  display: none; align-items: center; gap: .8rem;
  backdrop-filter: blur(8px);
}
.sticky-cta .sc-text { font-size: .8rem; color: var(--on-dark-2); line-height: 1.35; flex: 1; min-width: 0; }
.sticky-cta .sc-text b { display: block; color: #fff; font-size: .92rem; }
@media (max-width: 760px) { .sticky-cta { display: flex; } body { padding-bottom: 76px; } }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .8rem; } .mt-2 { margin-top: 1.6rem; } .mt-3 { margin-top: 2.4rem; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 1.6rem; } .mb-3 { margin-bottom: 2.4rem; }
.muted { color: var(--text-3); font-size: .9rem; }
.band-dark .muted { color: var(--on-dark-2); }
.nowrap { white-space: nowrap; }

@media print {
  .site-header, .sticky-cta { display: none !important; }
  body { padding-bottom: 0; }
}
