/* ============================================
   DALLAS COIN DEALER · SHARED STYLESHEET
   ============================================ */

:root {
  --bg: #F2EDE2;
  --bg-soft: #E9E2D2;
  --ink: #14241C;
  --forest: #1F3A2D;
  --moss: #2D4F3D;
  --gold: #B8893C;
  --gold-bright: #D4A04C;
  --rule: #C9BDA5;
  --paper: #FFFBF2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.serif { font-family: 'Geist', sans-serif; }
.mono { font-family: 'Geist Mono', monospace; font-feature-settings: 'tnum'; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ========== ALERT BAR ========== */
.alert-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 11px 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--gold);
}

.alert-bar .pill {
  background: var(--gold);
  color: var(--ink);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .alert-bar { font-size: 12px; gap: 14px; }
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 237, 226, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  padding: 18px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-block;
  width: 240px;
  height: 48px;
  background: url('/brand/logo-header.png') left center / contain no-repeat;
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
}

.brand-icon { display: none !important; }


.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.2s;
}

.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active { color: var(--moss); font-weight: 700; }
.nav-links a:hover { color: var(--moss); }

.nav-links > li { position: relative; }
.nav-links .caret { font-size: 10px; margin-left: 2px; opacity: 0.7; }
.nav-links .has-dropdown > a { cursor: pointer; }
.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 200px;
  background: var(--paper, #f2ede2);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 8px 0;
  list-style: none;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 50;
}
.nav-links .has-dropdown:hover > .dropdown,
.nav-links .has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .dropdown li { display: block; }
.nav-links .dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  opacity: 0.85;
  white-space: nowrap;
}
.nav-links .dropdown a:hover { opacity: 1; background: rgba(0,0,0,0.04); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  font-family: 'Geist', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-phone::before {
  content: "☏";
  color: var(--gold);
  font-size: 14px;
}

.btn-call {
  background: var(--ink);
  color: var(--paper);
  padding: 11px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-call:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Hamburger toggle - hidden on desktop */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: 12px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.2s;
}
.nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 18px;
    gap: 10px;
  }
  .brand { width: 180px; height: 38px; }


  .nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    margin-left: 0;
  }
  .nav-phone { display: none; }

  .nav-cta {
    margin-left: auto;
    gap: 8px;
  }
  /* Replace big CTA with compact icon-only call button */
  .nav-cta .btn-call {
    padding: 0;
    width: 40px;
    height: 40px;
    font-size: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .nav-cta .btn-call::before {
    content: "☏";
    font-size: 18px;
    color: var(--gold);
  }
  .nav-cta .btn-call:hover::before { color: var(--ink); }

  .nav-links {
    display: none;
    order: 99;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    margin: 6px -18px 0;
    padding: 8px 18px 18px;
    border-top: 1px solid var(--rule);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: var(--paper, #f2ede2);
  }
  .nav.nav-open .nav-links { display: flex; }
  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid var(--rule);
  }
  .nav-links > li:last-child { border-bottom: none; }
  .nav-links > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4px;
    font-size: 16px;
    font-weight: 500;
    opacity: 1;
  }
  .nav-links .caret {
    font-size: 14px;
    transition: transform 0.2s;
  }
  .nav-links .has-dropdown.open > a .caret { transform: rotate(180deg); }
  .nav-links .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 10px 12px;
    display: none;
    min-width: 0;
  }
  .nav-links .has-dropdown.open > .dropdown { display: block; }
  .nav-links .dropdown a {
    padding: 11px 8px;
    font-size: 14px;
    border-left: 2px solid var(--rule);
  }
  .nav-links .dropdown a:hover { border-left-color: var(--gold); background: transparent; }
}

@media (max-width: 380px) {
  .brand { font-size: 15px; }
  .nav { padding: 10px 14px; }
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  padding: 18px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.005em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 76, 0.3), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--moss); transform: translateY(-1px); }

.btn-primary .arr {
  display: inline-block;
  transition: transform 0.3s;
}

.btn-primary:hover .arr { transform: translate(3px, -3px) rotate(-45deg); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 18px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover { background: var(--ink); color: var(--paper); }

/* ========== PAGE HERO (smaller than home hero) ========== */
.page-hero {
  padding: 70px 5vw 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.page-hero .breadcrumb {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--moss);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.page-hero .breadcrumb a:hover { color: var(--ink); }
.page-hero .breadcrumb .sep { margin: 0 10px; opacity: 0.4; }

.page-hero h1 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}

.page-hero h1 .accent {
  color: var(--moss);
  font-weight: 500;
}

.page-hero .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--moss);
  margin-bottom: 32px;
  max-width: 540px;
}

.page-hero .lede strong {
  color: var(--ink);
  font-weight: 600;
}

.page-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.page-hero-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

.page-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero-card .label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-hero-card h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--paper);
}

.page-hero-card .phone-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 6px;
  transition: background 0.25s;
}

.page-hero-card .phone-cta:hover { background: var(--gold-bright); }

.page-hero-card .phone-cta .ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.page-hero-card .phone-cta .num {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.page-hero-card .phone-cta .lab {
  font-size: 11px;
  font-weight: 500;
  margin-top: 3px;
}

.page-hero-card .meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 160, 76, 0.2);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
  padding: 100px 5vw;
}

.content-section.alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.content-section.dark {
  background: var(--ink);
  color: var(--paper);
}

.content-section.forest {
  background: var(--forest);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.content-section.forest::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 137, 60, 0.15), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(184, 137, 60, 0.06), transparent 60%);
  pointer-events: none;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

h2 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

h2 .accent { color: var(--moss); font-weight: 500; }
.dark h2 .accent, .forest h2 .accent { color: var(--gold-bright); }

h3 {
  font-family: 'Geist', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
}

p { margin-bottom: 16px; line-height: 1.65; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--moss);
}

.dark .lede, .forest .lede { color: rgba(255, 255, 255, 0.78); }

/* ========== TWO-COL LAYOUT ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col.center { align-items: center; }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ========== SECTION HEAD (eyebrow + h2 / lede split) ========== */
.section-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.section-head.tight { margin-bottom: 10px; }

@media (max-width: 900px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  .section-head h2 { margin-bottom: 4px; }
  .section-head .lede { font-size: 16px; }
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.card-grid.two { grid-template-columns: 1fr 1fr; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 32px;
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20, 36, 28, 0.08);
}

.dark .card, .forest .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 160, 76, 0.2);
}

.dark .card:hover, .forest .card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  box-shadow: none;
}

.card .num {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: inherit;
}

.card p {
  font-size: 15px;
  color: var(--moss);
  line-height: 1.6;
  margin: 0;
}

.dark .card p, .forest .card p { color: rgba(255, 255, 255, 0.7); }

@media (max-width: 900px) {
  .card-grid, .card-grid.two, .card-grid.four { grid-template-columns: 1fr; gap: 16px; }
}

/* ========== CTA BREAK ========== */
.cta-break {
  background: var(--bg-soft);
  padding: 70px 5vw;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.cta-break-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.cta-break h3 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.cta-break h3 .accent { color: var(--moss); font-weight: 500; }

.cta-break .sub {
  font-size: 16px;
  color: var(--moss);
  margin: 0;
}

.cta-break .actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.cta-break .phone-big {
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.cta-break .smol {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--moss);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .cta-break-inner { grid-template-columns: 1fr; gap: 24px; }
  .cta-break .actions { align-items: flex-start; }
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 880px;
  margin: 50px auto 0;
}

.faq-q {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
  cursor: pointer;
}

.faq-q:first-child { border-top: 1px solid var(--rule); }

.faq-q summary {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  list-style: none;
  cursor: pointer;
}

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

.faq-q .qmono {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-top: 5px;
  min-width: 28px;
}

.faq-q .qtext {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.faq-q .qicon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s;
  margin-top: 2px;
}

.faq-q[open] .qicon {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
  transform: rotate(45deg);
}

.faq-ans {
  padding: 16px 0 6px 52px;
  font-size: 16px;
  color: var(--moss);
  line-height: 1.65;
}

.faq-ans p + p { margin-top: 12px; }

@media (max-width: 700px) {
  .faq-q .qtext { font-size: 17px; }
  .faq-ans { padding-left: 0; }
}

/* ========== FINAL CTA (full block) ========== */
.final-cta {
  padding: 100px 5vw;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(184, 137, 60, 0.15), transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(45, 79, 61, 0.4), transparent 55%);
  pointer-events: none;
}

.fc-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.fc-inner .eyebrow {
  color: var(--gold-bright);
  margin-bottom: 18px;
}

.fc-inner h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: var(--paper);
}

.fc-inner h2 .accent { color: var(--gold); font-weight: 500; }

.fc-inner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin: 0 auto 36px;
  max-width: 560px;
}

.fc-phone {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 20px 32px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 8px;
  transition: all 0.3s;
}

.fc-phone:hover { background: var(--gold-bright); transform: translateY(-2px); }

.fc-phone .ph-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.fc-phone .ph-num {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.fc-phone .ph-lab {
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
  text-align: left;
}

.fc-hours {
  margin-top: 20px;
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* ========== FOOTER ========== */
footer {
  background: var(--paper);
  color: var(--ink);
  padding: 70px 5vw 30px;
  border-top: 1px solid var(--rule);
}
footer a { color: var(--ink); }
footer .foot-list a:hover { color: var(--gold); }
.foot-bottom { color: var(--ink); border-top-color: var(--rule) !important; }
.foot-disclosure { color: rgba(20,36,28,0.65) !important; }

.foot-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.foot-brand {
  display: block;
  width: 200px;
  height: 42px;
  margin-bottom: 20px;
  background: url('/brand/logo-header.png') no-repeat left center;
  background-size: contain;
  
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
}

.foot-brand .b-icon,
.foot-brand .b-name {
  display: none !important;
}

.foot-col h5 {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}

.foot-col p {
  font-size: 14px;
  color: rgba(20, 36, 28, 0.75);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 360px;
}

.foot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.foot-list a {
  font-size: 14px;
  color: rgba(20, 36, 28, 0.8);
  transition: color 0.2s;
}

.foot-list a:hover { color: var(--gold); }

.foot-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.foot-contact a {
  color: var(--ink);
  transition: color 0.2s;
}

.foot-contact a:hover { color: var(--gold); }

.foot-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(20, 36, 28, 0.65);
}

.foot-bottom .legals { display: flex; gap: 24px; }

.foot-disclosure {
  max-width: 1280px;
  margin: 16px auto 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ========== STICKY MOBILE CALL BAR ========== */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 16px;
  z-index: 60;
  border-top: 1px solid var(--gold);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-mobile .lab {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  font-family: 'Geist Mono', monospace;
}

.sticky-mobile .nm {
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 2px;
}

.sticky-mobile .btn-call-mob {
  background: var(--gold);
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .sticky-mobile { display: flex; }
  body { padding-bottom: 80px; }
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mb-50 { margin-bottom: 50px; }

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.process-step {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 28px 24px;
  transition: all 0.3s;
}

.process-step:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.process-step:hover .ps-num { color: var(--gold); }
.process-step:hover h3 { color: var(--paper); }
.process-step:hover p { color: rgba(255,255,255,0.7); }

.process-step .ps-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.process-step p {
  font-size: 14px;
  color: var(--moss);
  line-height: 1.55;
  margin: 0;
  transition: color 0.3s;
}

@media (max-width: 900px) {
  .process-flow { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 500px) {
  .process-flow { grid-template-columns: 1fr; }
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.checklist li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.55;
}

.checklist li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.dark .checklist li, .forest .checklist li { color: rgba(255,255,255,0.85); }

/* ========== QUOTE FORM ========== */
.quote-form-section { background: var(--paper); padding: 90px 5vw; border-top: 1px solid var(--rule); }
.qf-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.qf-copy .eyebrow { color: var(--gold); font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.qf-copy h2 { font-family: 'Geist', sans-serif; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin: 14px 0 18px; }
.qf-copy p { color: var(--ink); opacity: 0.78; font-size: 16px; line-height: 1.65; max-width: 420px; }
.qf-trust { margin-top: 28px; display: grid; gap: 12px; }
.qf-trust li { display: flex; gap: 10px; font-size: 14px; color: var(--ink); opacity: 0.85; }
.qf-trust li::before { content: "✓"; color: var(--moss); font-weight: 700; }

.quote-form {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 24px 60px -20px rgba(20, 30, 20, 0.18), 0 2px 6px rgba(20, 30, 20, 0.04);
}
.quote-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--moss, var(--forest)));
  border-radius: 16px 16px 0 0;
}
.qf-header { margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px dashed var(--rule); }
.qf-badge {
  display: inline-block; font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  background: rgba(184, 137, 60, 0.1); padding: 5px 10px; border-radius: 999px; margin-bottom: 12px;
}
.qf-header h3 { font-size: 24px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; margin: 0 0 6px; }
.qf-header p { font-size: 14px; color: var(--ink); opacity: 0.7; margin: 0; }
.quote-form .qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form .qf-field { display: block; margin-bottom: 16px; }
.quote-form label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: 0.01em; }
.quote-form label .req { color: var(--gold); margin-left: 3px; }
.quote-form label .qf-opt { color: var(--ink); opacity: 0.45; font-weight: 400; margin-left: 4px; font-size: 12px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; box-sizing: border-box; padding: 13px 14px; font-size: 15px; font-family: inherit;
  background: #fff; border: 1px solid var(--rule); border-radius: 8px; color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: var(--ink); opacity: 0.35; }
.quote-form input:hover, .quote-form select:hover, .quote-form textarea:hover { border-color: var(--gold); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none; border-color: var(--forest); box-shadow: 0 0 0 4px rgba(31, 58, 45, 0.12);
}
.quote-form textarea { resize: vertical; min-height: 100px; }
.qf-submit {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--ink); color: var(--paper); padding: 16px 22px; border: 0; border-radius: 10px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.02em; cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 10px; box-shadow: 0 6px 18px -6px rgba(20, 30, 20, 0.4);
}
.qf-submit:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(184, 137, 60, 0.5); }
.qf-submit .qf-arr { transition: transform 0.2s; }
.qf-submit:hover .qf-arr { transform: translateX(4px); }
.qf-fineprint { font-size: 12px; color: var(--ink); opacity: 0.6; margin-top: 14px; line-height: 1.5; text-align: center; }
.qf-error { color: #b3261e; font-size: 13px; margin-top: 6px; display: none; text-align: center; }
.qf-success { display: none; padding: 28px 22px; background: #eef2eb; border: 1px solid var(--moss, var(--forest)); border-radius: 10px; color: var(--ink); font-size: 15px; line-height: 1.55; text-align: center; }
.qf-success-icon { width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 50%; background: var(--forest); color: var(--paper); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; }
.qf-success strong { display: block; color: var(--forest); font-size: 18px; margin-bottom: 6px; }
.qf-success p { margin: 0; font-size: 14px; opacity: 0.85; }
.qf-success a { color: var(--forest); font-weight: 600; border-bottom: 1px solid currentColor; }

@media (max-width: 820px) {
  .qf-inner { grid-template-columns: 1fr; gap: 36px; }
  .quote-form { padding: 26px 20px; }
  .quote-form .qf-row { grid-template-columns: 1fr; }
}

/* ============= GLOBAL IMAGE SYSTEM ============= */
.media {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 14px 36px -22px rgba(20, 36, 28, 0.35);
  aspect-ratio: 16/10;
  object-fit: cover;
}
.media.tall { aspect-ratio: 4/5; }
.media.wide { aspect-ratio: 16/7; }
.media.round { aspect-ratio: 1/1; }

.section-media {
  margin: 38px 0 8px;
  position: relative;
}
.section-media .media { aspect-ratio: 21/9; }

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 36px 0;
}
.media-split.reverse { direction: rtl; }
.media-split.reverse > * { direction: ltr; }
.media-split .media-copy h3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}
.media-split .media-copy p { color: var(--moss); font-size: 16px; }

@media (max-width: 800px) {
  .media-split { grid-template-columns: 1fr; gap: 24px; }
  .media-split.reverse { direction: ltr; }
  .section-media .media { aspect-ratio: 16/10; }
}

.hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -30px rgba(20, 36, 28, 0.45);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,36,28,0) 55%, rgba(20,36,28,0.35) 100%);
  pointer-events: none;
}

/* ========== HERO DECORATIVE COIN IMAGE ========== */
.hero, .page-hero { position: relative; }
.hero > .hero-grid, .page-hero > .page-hero-inner { position: relative; z-index: 1; }
.hero-coin-deco {
  position: absolute;
  top: 50%;
  right: -4vw;
  transform: translateY(-50%);
  width: clamp(280px, 34vw, 540px);
  aspect-ratio: 1 / 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.78;
  mix-blend-mode: multiply;
  filter: saturate(0.85) contrast(0.95);
  -webkit-mask-image: radial-gradient(circle at 55% 50%, #000 55%, transparent 78%);
          mask-image: radial-gradient(circle at 55% 50%, #000 55%, transparent 78%);
}
.hero-coin-deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 900px) {
  .hero-coin-deco {
    width: 220px;
    right: -50px;
    top: auto;
    bottom: -20px;
    transform: none;
    opacity: 0.45;
  }
}
@media (max-width: 560px) {
  .hero-coin-deco { width: 180px; opacity: 0.35; }
}

/* Real photographic coin variant — sits behind the phone-call panel on the right */
.hero { overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 42%, rgba(212,175,55,0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > .hero-grid { position: relative; z-index: 2; }
.hero-panel { position: relative; z-index: 3; margin-top: 110px; margin-left: auto; }
.hero-coin-deco--behind {
  position: absolute;
  width: clamp(520px, 42vw, 720px);
  aspect-ratio: 1062 / 823;
  right: 8%;
  top: 6%;
  transform: rotate(0deg);
  opacity: 1;
  mix-blend-mode: normal;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18));
  -webkit-mask-image: none;
          mask-image: none;
  z-index: 1;
  pointer-events: none;
}
.hero-coin-deco--behind img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 900px) {
  .hero-panel { margin-top: 0; margin-left: 0; }
  .hero-coin-deco--behind { display: none; }
}

/* ========== SECTION BACKGROUND IMAGES (AVIF + WEBP via image-set) ========== */
.section-bg {
  position: relative;
  isolation: isolate;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--paper);
}
.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,36,28,0.86), rgba(20,36,28,0.92));
  pointer-events: none;
}
.section-bg.tone-forest::before { background: linear-gradient(180deg, rgba(31,58,45,0.88), rgba(31,58,45,0.94)); }
.section-bg.tone-paper { color: var(--ink); background-color: var(--paper); }
.section-bg.tone-paper::before { background: linear-gradient(180deg, rgba(242,237,226,0.82), rgba(242,237,226,0.92)); }
.section-bg.tone-gold::before { background: linear-gradient(180deg, rgba(20,36,28,0.78), rgba(184,137,60,0.55)); }

/* Image variants — image-set() with AVIF preferred, WEBP fallback */
.bg-gold-coins-stacked      { background-image: image-set(url("/images/gold-coins-stacked-1600.avif") type("image/avif"), url("/images/gold-coins-stacked-1600.webp") type("image/webp")); }
.bg-silver-dollar-loupe     { background-image: image-set(url("/images/silver-dollar-loupe-1600.avif") type("image/avif"), url("/images/silver-dollar-loupe-1600.webp") type("image/webp")); }
.bg-dallas-skyline          { background-image: image-set(url("/images/dallas-skyline-1600.avif") type("image/avif"), url("/images/dallas-skyline-1600.webp") type("image/webp")); }
.bg-gold-silver-bars-map    { background-image: image-set(url("/images/gold-silver-bars-map-1600.avif") type("image/avif"), url("/images/gold-silver-bars-map-1600.webp") type("image/webp")); }
.bg-gold-bars-coin          { background-image: image-set(url("/images/gold-bars-coin-1600.avif") type("image/avif"), url("/images/gold-bars-coin-1600.webp") type("image/webp")); }
.bg-scrap-gold-jewelry      { background-image: image-set(url("/images/scrap-gold-jewelry-1600.avif") type("image/avif"), url("/images/scrap-gold-jewelry-1600.webp") type("image/webp")); }
.bg-texas-hill-country      { background-image: image-set(url("/images/texas-hill-country-1600.avif") type("image/avif"), url("/images/texas-hill-country-1600.webp") type("image/webp")); }
@media (max-width: 900px) {
  .section-bg { background-attachment: scroll; }
  .bg-gold-coins-stacked   { background-image: image-set(url("/images/gold-coins-stacked-800.avif") type("image/avif"), url("/images/gold-coins-stacked-800.webp") type("image/webp")); }
  .bg-silver-dollar-loupe  { background-image: image-set(url("/images/silver-dollar-loupe-800.avif") type("image/avif"), url("/images/silver-dollar-loupe-800.webp") type("image/webp")); }
  .bg-dallas-skyline       { background-image: image-set(url("/images/dallas-skyline-800.avif") type("image/avif"), url("/images/dallas-skyline-800.webp") type("image/webp")); }
  .bg-gold-silver-bars-map { background-image: image-set(url("/images/gold-silver-bars-map-800.avif") type("image/avif"), url("/images/gold-silver-bars-map-800.webp") type("image/webp")); }
  .bg-gold-bars-coin       { background-image: image-set(url("/images/gold-bars-coin-800.avif") type("image/avif"), url("/images/gold-bars-coin-800.webp") type("image/webp")); }
  .bg-scrap-gold-jewelry   { background-image: image-set(url("/images/scrap-gold-jewelry-800.avif") type("image/avif"), url("/images/scrap-gold-jewelry-800.webp") type("image/webp")); }
  .bg-texas-hill-country   { background-image: image-set(url("/images/texas-hill-country-800.avif") type("image/avif"), url("/images/texas-hill-country-800.webp") type("image/webp")); }
}

/* Inline section media (picture element) — used inside existing two-col layouts when present */
.section-figure {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px -25px rgba(20,36,28,0.45);
}
.section-figure picture, .section-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* ========== Section-bg text contrast overrides ========== */
.cta-break.section-bg, .cta-break.section-bg .sub, .cta-break.section-bg h3 { color: var(--paper); }
.cta-break.section-bg h3 .accent { color: var(--gold); }
.cta-break.section-bg .phone-big { color: var(--gold); }
.cta-break.section-bg .smol { color: rgba(255,251,242,0.7); }
.content-section.alt.section-bg { border-top-color: rgba(255,255,255,0.06); border-bottom-color: rgba(255,255,255,0.06); }
.content-section.alt.section-bg.tone-paper { color: var(--ink); }
.final-cta.section-bg::after { display:none; }

/* ========== Stronger contrast for middle/final CTA over background images ========== */
.final-cta.section-bg::before,
.cta-break.section-bg::before {
  background: linear-gradient(180deg, rgba(10,20,15,0.86), rgba(10,20,15,0.92)) !important;
  backdrop-filter: blur(2px);
}
.final-cta.section-bg .fc-inner .eyebrow { color: #F4C77A; text-shadow: 0 1px 2px rgba(0,0,0,0.6); }
.final-cta.section-bg .fc-inner h2 { color: #FFFBF2; text-shadow: 0 2px 12px rgba(0,0,0,0.65); }
.final-cta.section-bg .fc-inner h2 .accent { color: #F4C77A; }
.final-cta.section-bg .fc-inner p { color: rgba(255,255,255,0.95); text-shadow: 0 1px 6px rgba(0,0,0,0.55); }
.final-cta.section-bg .fc-phone {
  background: #F4C77A;
  color: #14241C;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.15);
}
.final-cta.section-bg .fc-phone .ph-icon { background: #14241C; color: #F4C77A; }
.final-cta.section-bg .fc-phone .ph-num { color: #14241C; text-shadow: none; }
.final-cta.section-bg .fc-phone .ph-lab { color: #14241C; opacity: 0.85; }
.final-cta.section-bg .fc-hours { color: rgba(255,255,255,0.85); text-shadow: 0 1px 4px rgba(0,0,0,0.5); }

.cta-break.section-bg h3 { text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.cta-break.section-bg .sub { color: rgba(255,251,242,0.92); text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.cta-break.section-bg .phone-big { color: #F4C77A; text-shadow: 0 2px 8px rgba(0,0,0,0.55); }
.cta-break.section-bg .smol { color: rgba(255,251,242,0.85); }

