/* =============================================================
   ALTA RESGUARDO - Vault Steel / Brass Lock Dark Theme
   DARK vault-steel theme: vault interior blue-black with
   burnished brass accent. Unique to this site.
   ============================================================= */

/* ---- Palette tokens (documented here for the theme) ----
   vault-steel body bg : #12161C
   polished-steel text  : #E8ECF2
   brass-lock accent    : #C9A227
   teller-panel raised  : #1A2028
   vault-deep panel     : #0C1015
   deeper-vault footer  : #080B10
   guard-slate body text: #7E8A99
   paper-contract tint  : #F5F1E6
   seal-red secondary   : #A63A2E
   steel-hairline       : #262E38
   ---------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  background-color: #12161C;
  color: #E8ECF2;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.home-page {
  background-color: #12161C;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: "Trebuchet MS", "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ---------- CUSTODY-GATE NAV ---------- */
.gatenav {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: #1A2028;
  border-bottom: 1px solid #262E38;
}

.time-lock-strip {
  height: 16px;
  background-color: #0C1015;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 6px;
  overflow: hidden;
}

.time-lock-strip span {
  display: inline-block;
  height: 4px;
  width: 1px;
  background-color: #C9A227;
  margin: 0 9px;
  border-radius: 1px;
  box-shadow: 6px 0 0 #262E38, -12px 0 0 #262E38, 18px 0 0 #262E38;
}

.time-lock-strip span:nth-child(1)::after,
.time-lock-strip span:nth-child(3)::after {
  content: '';
  position: absolute;
}

.gatenav-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 48px;
  background-color: #1A2028;
}

.gatenav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-name {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #E8ECF2;
}

/* dial glyph before brand */
.dial-glyph {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #C9A227;
  background-color: #0C1015;
  flex: 0 0 auto;
}

.dial-glyph::before,
.dial-glyph::after {
  content: '';
  position: absolute;
  background-color: #C9A227;
}

.dial-glyph::before {
  width: 2px;
  height: 12px;
  left: 5px;
  top: 0;
}

.dial-glyph::after {
  width: 12px;
  height: 2px;
  top: 5px;
  left: 0;
}

.site-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #7E8A99;
}

.site-links a {
  text-decoration: none;
  color: #7E8A99;
  padding: 6px 10px;
  position: relative;
  flex: 0 0 auto;
}

/* brass hinge-dot separators */
.site-links a::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #C9A227;
  transform: translateY(-50%);
}

.site-links a:first-child::before {
  display: none;
}

.site-links a:hover {
  color: #E8ECF2;
}

.site-links a:hover::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 2px;
  background-color: #C9A227;
}

/* mobile toggle + menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid #262E38;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background-color: #C9A227;
  display: block;
}

.mobile-menu {
  display: none;
}

@media (max-width: 820px) {
  .gatenav-row { padding: 16px 22px; }
  .site-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background-color: #0C1015;
    border-top: 1px solid #262E38;
    padding: 8px 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: #7E8A99;
    text-decoration: none;
    padding: 14px 26px;
    border-bottom: 1px solid #1A2028;
  }
  .mobile-menu a:hover { color: #C9A227; }
}

/* ---------- HERO (vault door) ---------- */
.home-hero {
  background-color: #12161C;
  border-bottom: 1px solid #262E38;
  overflow-x: clip;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 48px 80px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

/* text column */
.hero-text-col { max-width: 620px; }

.eyebrow-chip {
  display: inline-block;
  background-color: #C9A227;
  color: #12161C;
  font-family: "Trebuchet MS", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 8px 14px;
  border-radius: 3px;
  margin-bottom: 24px;
}

.home-hero h1 {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 3.15rem);
  color: #E8ECF2;
  margin-bottom: 24px;
  line-height: 1.1;
}

.home-hero h1 span { color: #C9A227; }

.home-hero .hero-sub {
  color: #7E8A99;
  font-size: 1.03rem;
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 560px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary,
.btn-secondary,
.btn-accent {
  display: inline-block;
  font-family: "Trebuchet MS", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 3px;
}

.btn-primary {
  background-color: #C9A227;
  color: #12161C;
  border: 1px solid #C9A227;
}

.btn-primary:hover { background-color: #ddb52f; }

.btn-secondary {
  background-color: transparent;
  color: #E8ECF2;
  border: 1px solid #E8ECF2;
}

.btn-secondary:hover { border-color: #C9A227; color: #C9A227; }

.btn-accent {
  background-color: #C9A227;
  color: #12161C;
  border: 1px solid #C9A227;
  margin-top: 8px;
}

.btn-accent:hover { background-color: #ddb52f; border-color: #ddb52f; }

/* scene canvas */
.hero-scene {
  position: relative;
  min-height: 460px;
}

.vault-scene {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
}

/* circular vault door */
.vault-door {
  position: absolute;
  left: 2%;
  top: 6%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: #0C1015;
  border: 6px solid #262E38;
  box-shadow: 0 0 0 3px #1A2028 inset;
  z-index: 3;
}

.door-rim {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #262E38;
}

/* dial ring center */
.door-dial {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid #C9A227;
  background:
    repeating-conic-gradient(#C9A227 0deg 2deg, #1A2028 2deg 8deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 6px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 6px));
}

/* dial center spindle */
.door-dial::after {
  content: '';
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  background-color: #C9A227;
  border: 4px solid #1A2028;
}

/* seal-red index notch */
.dial-index {
  position: absolute;
  left: 50%;
  top: -4px;
  width: 88px;
  height: 6px;
  background-color: #A63A2E;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* spoke handle grips */
.door-spoke .grip {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #C9A227;
  border: 2px solid #0C1015;
  z-index: 4;
}

.grip.g1 { left: 50px; top: 50%; transform: translateY(-50%); }
.grip.g2 { right: 50px; top: 50%; transform: translateY(-50%); }
.grip.g3 { left: 50%; top: 50px; transform: translateX(-50%); }

/* steel bolts at rim */
.vault-door .bolt { position: absolute; width: 16px; height: 16px; }
.bolt.b1 { right: -6px; top: 112px; z-index: 4; background:#262E38; border-radius:50%; }
.bolt.b2 { left: -6px; top: 112px; background: #262E38; border-radius:50%; }
.bolt.b3 { right: -6px; bottom: 112px; background:#262E38; border-radius:50%; }
.bolt.b4 { left: -6px; bottom: 112px; background:#262E38; border-radius:50%; }

/* time-lock clock post */
.tclock {
  position: absolute;
  left: 60%;
  top: 2%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: #12161C;
  border: 3px solid #262E38;
  z-index: 2;
  box-shadow: 0 0 0 3px #0C1015;
}

.tclock .tick {
  position: absolute;
  width: 2px;
  height: 9px;
  background-color: #7E8A99;
  left: 50%;
  top: 1px;
}

.tclock .tick:nth-child(1){ transform: translateX(-50%) rotate(0deg) translateY(0); top:2px; left:50%; }
.tclock .tick:nth-child(2){ top: 43px; left: 60px; }
.tclock .tick:nth-child(3){ bottom: 2px; }

.hub {
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 10px;
  background: #C9A227;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.hand {
  position: absolute;
  left: 50%; top: 50%;
  width: 3px; height: 34px;
  background-color: #C9A227;
  transform-origin: bottom;
  transform: translateX(-50%) rotate(115deg);
  z-index: 3;
}

/* safe deposit box wall */
.box-wall {
  position: absolute;
  right: 1%;
  top: 18%;
  width: 168px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  z-index: 2;
}

.box {
  aspect-ratio: 1 / 1.25;
  background-color: #1A2028;
  border: 1px solid #262E38;
  border-radius: 3px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box .plate {
  position: absolute;
  inset: 5px;
  border: 1px solid #0C1015;
  border-radius: 2px;
}

.box .keyhole {
  width: 6px;
  height: 10px;
  background-color: #C9A227;
  border-radius: 3px 3px 2px 2px;
  position: relative;
  z-index: 2;
}

.box .keyhole::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 10px; height: 6px;
  background-color: #C9A227;
  transform: translateX(-50%);
  border-radius: 0 0 8px 8px / 0 0 12px 12px;
}

.box.open { background-color: #0C1015; }

.box .deed-in {
  width: 22px;
  height: 26px;
  background-color: #C9A227;
  border-radius: 2px;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 0 0 2px #12161C;
}

/* chain-of-custody tag on cable */
.cable-tag {
  position: absolute;
  right: 30%;
  bottom: 22%;
  z-index: 3;
}

.cable-tag .cable {
  display: block;
  width: 140px;
  height: 2px;
  background-color: #7E8A99;
  margin: 0 auto 10px;
  position: relative;
}

.coc-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 46px;
  background-color: #C9A227;
  color: #12161C;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin: 0 auto;
  border-radius: 3px;
  border: 2px solid #0C1015;
  box-shadow: 0 4px 0 #0C1015;
}

/* custody ledger on desk */
.ledger-desk {
  position: absolute;
  left: 4%;
  bottom: 4%;
  width: 190px;
  height: 128px;
  background-color: #1A2028;
  border: 1px solid #262E38;
  z-index: 3;
}

.ledger-book {
  position: relative;
  width: 150px;
  height: 84px;
  margin: 12px auto 0;
  background-color: #F5F1E6;
  border-radius: 3px;
  padding: 12px 14px;
  box-shadow: 0 4px 0 #262E38;
}

.ledger-book > .lg-line {
  position: absolute;
  color: #7E8A99;
  height: 2px;
  width: 60%;
  background-color: #A69E89;
}

.ledger-book .lg-line:nth-child(1){ top: 18px; left: 20px; }
.ledger-book .lg-line:nth-child(2){ top: 30px; left: 20px; }
.ledger-book .lg-line:nth-child(3){ top: 42px; left: 20px; }
.ledger-book .lg-line:nth-child(4){ top: 54px; left: 20px; width: 40%; }

.seal-dot {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 20px;
  height: 20px;
  background-color: #A63A2E;
  border-radius: 50%;
}

.seal-stamp { position: relative; }

.desk-seal {
  width: 36px;
  height: 36px;
  margin: 6px 8px 0 auto;
  background-color: #A63A2E;
  border: 3px solid #C9A227;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5F1E6;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  transform: rotate(6deg);
}

/* guard lantern on floor */
.lantern {
  position: absolute;
  right: 4%;
  bottom: 2%;
  z-index: 1;
  width: 64px;
  height: 90px;
}

.lantern-pool {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 46px;
  background: rgba(201,162,39,0.28);
  border-radius: 50%;
  filter: blur(2px);
}

.lantern-body {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 58px;
  background-color: #262E38;
  border-radius: 8px 8px 4px 4px;
}

.lantern-body::before {
  content: '';
  position: absolute;
  inset: 8px;
  background-color: #C9A227;
  border-radius: 2px;
}

/* responsive hero */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; padding: 48px 28px 40px; }
  .hero-text-col { max-width: 100%; }
  .hero-scene { min-height: 380px; }
  .vault-scene { min-height: 380px; }
}

@media (max-width: 560px) {
  .vault-door { width: 180px; height: 180px; left: 6%; }
  .box-wall { width: 118px; right: 2%; }
  .ledger-desk { width: 150px; }
}

/* ---------- SECTION: rows wrap (ledger box rows) ---------- */
.section {
  padding: 80px 0;
  background-color: #12161C;
}

.rows-wrap .process-brief {
  color: #7E8A99;
  font-size: 1.06rem;
  line-height: 1.75;
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
  background-color: #1A2028;
  border: 1px solid #262E38;
  border-left: 4px solid #C9A227;
  border-radius: 6px;
  padding: 24px 32px;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 48px;
  padding: 0 48px;
  text-align: center;
}

.section-heading h2 {
  font-size: 2rem;
  color: #C9A227;
  margin-bottom: 14px;
}

.section-heading .ledger-note {
  color: #7E8A99;
  font-size: 1.02rem;
}

.rows-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 32px;
}

.rows-wrap .section-heading {
  padding: 0;
}

.ledger-row {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  align-items: center;
  gap: 28px;
  background-color: #1A2028;
  border: 1px solid #262E38;
  border-radius: 6px;
  padding: 30px 30px;
  margin-bottom: 12px;
}

/* box-tag chip (deposit box door) */
.box-tag {
  position: relative;
  width: 96px;
  height: 108px;
  background-color: #0C1015;
  border: 1px solid #262E38;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.box-code {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: #C9A227;
  letter-spacing: 0.06em;
}

/* brass keyhole on tag */
.mini-keyhole {
  width: 8px;
  height: 14px;
  background-color: #C9A227;
  border-radius: 4px 4px 2px 2px;
  position: relative;
  box-shadow: 0 0 0 2px #1A2028;
}

.mini-keyhole::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 13px;
  height: 7px;
  background-color: #C9A227;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px / 0 0 12px 12px;
}

.row-copy h3 {
  font-size: 1.35rem;
  color: #E8ECF2;
  margin-bottom: 10px;
}

.row-copy p {
  color: #7E8A99;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* wax seal stamp on right */
.row-seal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #A63A2E;
  border: 3px solid #C9A227;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  color: #F5F1E6;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.ledger-row:nth-child(3) .row-seal span { display: block; }

@media (max-width: 760px) {
  .ledger-row { grid-template-columns: 1fr; text-align: left; row-gap: 18px; padding: 24px; }
  .box-tag { justify-self: start; width: 84px; height: 96px; }
  .row-seal { justify-self: start; }
}

/* ---------- METRIC BAND ---------- */
.metric-band {
  display: flex;
  align-items: stretch;
  background-color: #0C1015;
  border-top: 1px solid #262E38;
  border-bottom: 1px solid #262E38;
  padding: 56px 24px;
}

.metric {
  flex: 1 1 0;
  text-align: center;
  padding: 0 16px;
}

.metric-divider {
  width: 1px;
  background-color: #262E38;
  margin: 12px 0;
}

.metric-num {
  display: block;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #C9A227;
  line-height: 1;
  margin-bottom: 12px;
}

.metric-num .delta { font-size: 1.6rem; }

.metric-label {
  display: block;
  font-family: "Trebuchet MS", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: #7E8A99;
}

@media (max-width: 760px) {
  .metric-band { flex-direction: column; gap: 30px; }
  .metric-divider { width: auto; height: 1px; margin: 0 30px; }
}

/* ---------- STATEMENT BAND ---------- */
.statement-band {
  background-color: #0C1015;
  border-top: 1px solid #262E38;
  padding: 90px 24px;
}

.statement-block {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 36px;
  border-left: 4px solid #C9A227;
}

.statement-block h2 {
  font-size: 2rem;
  color: #E8ECF2;
  margin-bottom: 20px;
  line-height: 1.3;
}

.statement-block p {
  color: #7E8A99;
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 22px;
}

.statement-block .attribution {
  display: block;
  font-family: "Trebuchet MS", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.82rem;
  color: #C9A227;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background-color: #12161C;
  text-align: center;
  padding: 96px 24px;
  border-bottom: 1px solid #262E38;
}

.cta-band h2 {
  font-size: 2.2rem;
  color: #C9A227;
  margin-bottom: 18px;
}

.cta-band p {
  color: #E8ECF2;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 34px;
}

/* ---------- FOOTER: deed-box ---------- */
.deedbox-footer {
  background-color: #080B10;
  padding: 0 0 28px;
  position: relative;
  z-index: 1;
}

.safe-deposit-strip {
  height: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background-color: #1A2028;
  border-bottom: 1px solid #262E38;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.sdbox {
  position: relative;
  width: 14px;
  height: 13px;
  background-color: #0C1015;
  border-bottom: 1px solid #262E38;
  box-shadow: inset 0 0 0 1px #262E38;
}

.sdbox::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 5px;
  background-color: #C9A227;
  transform: translate(-50%, -40%);
  border-radius: 2px;
}

.sdbox.mist::after { content: none; }
.sdbox.mist { background-color: #262E38; }

.footer-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.footer-brand { justify-content: center; margin: 0 auto 20px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: #7E8A99;
  margin-bottom: 20px;
}

.footer-links a {
  color: #7E8A99;
  text-decoration: none;
}

.footer-links a:hover { color: #C9A227; }

.wax-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 22px;
}

.mini-seal {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #A63A2E;
  border: 2px solid #C9A227;
}

.mini-seal::after {
  content: 'A';
  position: relative;
  top: 1px;
  color: #F5F1E6;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: "Trebuchet MS", Arial, sans-serif;
}

.sprig {
  display: inline-block;
  width: 70px;
  height: 2px;
  background-color: #262E38;
  position: relative;
}

.sprig::before,
.sprig::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #7E8A99;
}

.sprig::before { left: 10px; top: -3px; }
.sprig::after { left: 26px; top: 1px; width: 2px; height: 2px; background-color: #7E8A99; }

.footer-legal {
  color: #7E8A99;
  font-size: 0.86rem;
  line-height: 1.6;
  word-break: break-word;
}

/* ---------- FADE UP (scroll reveal, safe fallback) ---------- */
.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ---------- MISC / responsive polish ---------- */
@media (max-width: 1280px) {
  .rows-wrap { max-width: 100%; padding: 70px 28px; }
}

@media (max-width: 560px) {
  .section-heading { padding: 0 20px; }
  .cta-band, .statement-band { padding: 60px 20px; }
  .statement-block { padding-left: 22px; }
  .footer-links { gap: 10px 16px; }
}
