/* ============================================
   OneCashOffer - Main Stylesheet
   Brand: #0B1120 (dark) / #C8A84E (gold)
   Fonts: Bebas Neue (display) / Barlow (body)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg: #0B1120;
  --bg-light: #111A2E;
  --bg-card: #162036;
  --bg-card-hover: #1C2A44;
  --gold: #C8A84E;
  --gold-hover: #D9BC6A;
  --gold-dim: rgba(200,168,78,0.15);
  --white: #FFFFFF;
  --gray-100: #F0F0F0;
  --gray-200: #D0D0D0;
  --gray-300: #A0A8B8;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --text: #E0E4EC;
  --text-muted: #8B95A8;
  --success: #22C55E;
  --error: #EF4444;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px;
  --max-w-narrow: 800px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-hover); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 0.5em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 0.4em; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.3em; }
p { margin-bottom: 1em; }
.subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-large { font-size: 1.15rem; line-height: 1.8; }
strong { color: var(--white); }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--bg-light); }
.section--gold { background: var(--gold); color: var(--bg); }
.section--gold h2, .section--gold h3, .section--gold p { color: var(--bg); }

/* --- Grid --- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
  .grid-4, .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(11,17,32,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,168,78,0.08);
  transition: all var(--transition);
}
.nav--scrolled {
  padding: 10px 0;
  background: rgba(11,17,32,0.97);
  border-bottom-color: rgba(200,168,78,0.15);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav__logo span { color: var(--white); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  color: var(--gray-200);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav__cta {
  background: var(--gold);
  color: var(--bg) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.nav__cta:hover {
  background: var(--gold-hover);
  color: var(--bg) !important;
  transform: translateY(-1px);
}
.nav__phone {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 0;
  transition: all var(--transition);
}
.nav__hamburger span:nth-child(1) { top: 0; }
.nav__hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__hamburger span:nth-child(3) { bottom: 0; }
.nav--open .nav__hamburger span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav--open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav--open .nav__hamburger span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Stripped nav for conversion pages */
.nav--stripped .nav__links { display: none !important; }
.nav--stripped .nav__hamburger { display: none !important; }

@media (max-width: 900px) {
  .nav__hamburger { display: block; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-light);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    transition: right var(--transition);
    border-left: 1px solid rgba(200,168,78,0.15);
  }
  .nav--open .nav__links { right: 0; }
  .nav__links a { font-size: 1.1rem; }
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(11,17,32,0.7) 50%, var(--bg) 100%);
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero h1 { margin-bottom: 0.4em; }
.hero h1 .gold { color: var(--gold); }
.hero__sub {
  font-size: 1.2rem;
  color: var(--gray-200);
  margin-bottom: 2em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero--compact { padding: 140px 0 60px; }
.hero--left { text-align: left; }
.hero--left .hero__content { margin: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(200,168,78,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--bg);
}
.btn--large { padding: 18px 40px; font-size: 1.05rem; }
.btn--block { display: flex; justify-content: center; width: 100%; }
.btn--white { background: var(--white); color: var(--bg); border-color: var(--white); }
.btn--white:hover { background: var(--gray-100); color: var(--bg); }

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 24px;
  background: var(--bg-light);
  border-top: 1px solid rgba(200,168,78,0.1);
  border-bottom: 1px solid rgba(200,168,78,0.1);
}
.trust-item {
  text-align: center;
  min-width: 140px;
}
.trust-item__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.trust-item__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(200,168,78,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(200,168,78,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card__icon {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card--link:hover { color: inherit; }
.card--gold-top { border-top: 3px solid var(--gold); }
.card--small { padding: 20px; }

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step {
  text-align: center;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1.8rem;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* --- Lead Form --- */
.lead-form-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(200,168,78,0.15);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.lead-form-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.lead-form-wrap .form-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row--single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-200);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-light);
  border: 1px solid rgba(200,168,78,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-light); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group--error input,
.form-group--error select {
  border-color: var(--error);
}
.form-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 4px;
}
.form-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
}
.form-submit {
  margin-top: 8px;
}
.form-submit .btn { width: 100%; justify-content: center; }
.form-submit .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 12px;
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .lead-form-wrap { padding: 24px; }
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.two-col--reverse { grid-template-columns: 400px 1fr; }

@media (max-width: 1024px) {
  .two-col, .two-col--reverse {
    grid-template-columns: 1fr;
  }
}

/* --- Comparison Table --- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(200,168,78,0.1);
  font-size: 0.95rem;
}
.compare-table th {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  background: var(--bg-light);
  border-bottom: 2px solid var(--gold);
}
.compare-table td:first-child {
  color: var(--gray-200);
  font-weight: 600;
}
.compare-table .highlight {
  background: rgba(200,168,78,0.05);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.compare-table .highlight-head {
  background: var(--gold);
  color: var(--bg);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.check { color: var(--success); font-weight: 700; }
.cross { color: var(--error); font-weight: 700; }

@media (max-width: 768px) {
  .compare-table { font-size: 0.85rem; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
}

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(200,168,78,0.1);
}
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1.4;
}
.faq-item__q:hover { color: var(--gold); }
.faq-item__q::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
}
.faq-item.open .faq-item__q::after {
  content: '-';
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-item__a {
  max-height: 800px;
  padding-bottom: 20px;
}
.faq-item__a p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item__a ul, .faq-item__a ol {
  color: var(--text-muted);
  padding-left: 20px;
  margin: 8px 0;
}
.faq-item__a li {
  list-style: disc;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

/* --- City Grid --- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.city-link {
  display: block;
  background: var(--bg-card);
  border: 1px solid rgba(200,168,78,0.08);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--gray-200);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all var(--transition);
  text-decoration: none;
}
.city-link:hover {
  background: var(--bg-card-hover);
  color: var(--gold);
  border-color: rgba(200,168,78,0.25);
}
.city-link__arrow { color: var(--gold); margin-left: 4px; }

/* --- Category Tabs --- */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}
.category-tab {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(200,168,78,0.15);
  border-radius: 100px;
  color: var(--gray-200);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.category-tab:hover,
.category-tab.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* --- Stats Table (Market Data) --- */
.market-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.market-table th {
  background: var(--bg-light);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--gold);
}
.market-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(200,168,78,0.08);
  font-size: 0.92rem;
}
.market-table tr:hover td { background: rgba(200,168,78,0.03); }

/* --- Testimonial Cards --- */
.testimonial {
  background: var(--bg-card);
  border: 1px solid rgba(200,168,78,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial__stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 12px; }
.testimonial__text {
  color: var(--gray-200);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial__author { color: var(--gold); font-weight: 700; font-size: 0.9rem; }
.testimonial__location { color: var(--text-muted); font-size: 0.82rem; }

/* --- CTA Bar --- */
.cta-bar {
  background: var(--gold);
  padding: 48px 24px;
  text-align: center;
}
.cta-bar h2 { color: var(--bg); font-size: 2.2rem; margin-bottom: 8px; }
.cta-bar p { color: var(--bg); opacity: 0.85; margin-bottom: 24px; }
.cta-bar .btn--white:hover { transform: translateY(-2px); }

/* --- Guide Card --- */
.guide-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid rgba(200,168,78,0.08);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  text-decoration: none;
}
.guide-card:hover {
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.guide-card__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.guide-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}
.guide-card__desc { color: var(--text-muted); font-size: 0.9rem; }

/* --- Author Box --- */
.author-box {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(200,168,78,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
}
.author-box__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-dim);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}
.author-box__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}
.author-box__role { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.author-box__bio { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }

/* --- Property Type Icons --- */
.prop-types {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.prop-type {
  background: var(--bg-card);
  border: 1px solid rgba(200,168,78,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.prop-type:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.prop-type__icon { font-size: 2.2rem; margin-bottom: 8px; }
.prop-type__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
}
.prop-type__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --- TOC (Table of Contents) --- */
.toc {
  background: var(--bg-card);
  border: 1px solid rgba(200,168,78,0.12);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin: 24px 0 40px;
}
.toc__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.toc ol {
  padding-left: 20px;
}
.toc li {
  list-style: decimal;
  margin-bottom: 6px;
}
.toc a {
  color: var(--gray-200);
  font-size: 0.92rem;
}
.toc a:hover { color: var(--gold); }

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--gray-300); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* --- Footer --- */
.footer {
  background: var(--bg-light);
  border-top: 1px solid rgba(200,168,78,0.1);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer__brand span { color: var(--white); }
.footer__desc { color: var(--text-muted); font-size: 0.9rem; max-width: 300px; }
.footer h4 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer a { color: var(--gray-300); font-size: 0.88rem; }
.footer a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(200,168,78,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { color: var(--gray-500); font-size: 0.82rem; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--gray-500); font-size: 0.82rem; }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Utility Spacing --- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.pt-0 { padding-top: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Spinner --- */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--bg);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Background Accents --- */
.glow-top {
  position: relative;
}
.glow-top::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200,168,78,0.06) 0%, transparent 70%);
  pointer-events: none;
}
