/* ============================================
   TEXAS CAR WRECK LANDING — STYLES
   ============================================ */

:root {
  /* Color tokens */
  --navy-900: #08172E;
  --navy-800: #0B1E3F;
  --navy-700: #142C56;
  --navy-600: #1E3D70;
  --gold-500: #C9A961;
  --gold-600: #B8985A;
  --gold-100: #F4E9CD;
  --white:    #FFFFFF;
  --gray-50:  #F7F8FA;
  --gray-100: #F0F2F5;
  --gray-200: #E2E5EA;
  --gray-300: #C9CFD6;
  --gray-500: #6B7280;
  --gray-700: #2D3748;
  --text:     #1F2937;
  --text-muted: #5A6577;

  /* Spacing & layout */
  --container: 1200px;
  --container-narrow: 820px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(8, 23, 46, 0.06);
  --shadow:    0 6px 20px rgba(8, 23, 46, 0.08);
  --shadow-lg: 0 24px 60px rgba(8, 23, 46, 0.18);

  /* Fonts */
  --font-serif: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 0;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--navy-900);
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-lg {
  font-size: 17px;
  padding: 17px 28px;
}

.btn-block { width: 100%; }

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  box-shadow: 0 4px 14px rgba(201, 169, 97, 0.35);
}
.btn-primary:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy-900);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.logo:hover { text-decoration: none; }

.logo-mark {
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 97, 0.12);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}

.logo-sub {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: 2px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 600;
  transition: all 0.18s ease;
}
.header-phone:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  text-decoration: none;
}
.header-phone svg { color: var(--gold-500); }
.header-phone:hover svg { color: var(--navy-900); }

.phone-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  display: none;
}
.phone-number {
  font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
  .phone-label { display: inline; }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: var(--white);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  .hero {
    padding: 72px 0 88px;
  }
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
  }
}

.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid rgba(201, 169, 97, 0.4);
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(32px, 5.4vw, 54px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-headline .accent {
  color: var(--gold-500);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 560px;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 600;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-bullets svg {
  color: var(--gold-500);
  flex-shrink: 0;
}

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

@media (min-width: 960px) {
  .hero-headline { font-size: clamp(36px, 4vw, 52px); }
  .hero-sub      { font-size: 18px; }
}

/* ============================================
   LEAD FORM CARD
   ============================================ */

.hero-form-wrap {
  position: relative;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px 24px;
  color: var(--text);
  position: relative;
}

@media (min-width: 960px) {
  .form-card {
    padding: 32px 30px 28px;
    position: sticky;
    top: 96px;
  }
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-600));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-header {
  text-align: center;
  margin-bottom: 22px;
}

.form-title {
  font-size: 26px;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.field label,
.field-radio legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.01em;
}

.field-radio legend {
  margin-bottom: 8px;
  padding: 0;
}

.req {
  color: #B8985A;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--gray-500); }

.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}

.field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
}

.field-radio {
  border: none;
  padding: 0;
  margin: 0;
}

.radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.radio {
  flex: 1 1 auto;
  min-width: 90px;
  position: relative;
  cursor: pointer;
}

.radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio span {
  display: block;
  text-align: center;
  padding: 12px 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.radio:hover span {
  border-color: var(--gold-500);
  background: var(--gold-100);
}

.radio input[type="radio"]:checked + span {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.radio input[type="radio"]:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.35);
}

.form-footnote {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 4px 0 0;
}

.form-footnote svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--text-muted);
}

.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (min-width: 720px) {
  .trust-inner { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item svg {
  color: var(--gold-500);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 14px;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ============================================
   SECTIONS — SHARED
   ============================================ */

.section {
  padding: 64px 0;
}

@media (min-width: 960px) {
  .section { padding: 88px 0; }
}

.section-white { background: var(--white); }
.section-light { background: var(--gray-50); }
.section-navy  { background: var(--navy-900); color: var(--white); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head-light h2 { color: var(--white); }
.section-head-light .lede { color: rgba(255, 255, 255, 0.82); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin-bottom: 14px;
  padding: 5px 12px;
  background: var(--gold-100);
  border-radius: 100px;
}

.eyebrow-gold {
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-500);
}

.section-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 14px;
}

.section-head .lede {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CARD GRID (Practice Areas)
   ============================================ */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 600px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold-500);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  color: var(--gold-500);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ============================================
   COMPENSATION (navy section)
   ============================================ */

.comp-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .comp-grid { grid-template-columns: 1fr 1fr; }
}

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

.comp-grid li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.18s ease;
}

.comp-grid li:hover {
  background: rgba(201, 169, 97, 0.12);
  border-color: rgba(201, 169, 97, 0.4);
}

.comp-grid li svg {
  color: var(--gold-500);
  flex-shrink: 0;
}

.comp-disclaimer {
  text-align: center;
  margin: 36px auto 0;
  max-width: 720px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

/* ============================================
   REASONS (Why act quickly)
   ============================================ */

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 720px) {
  .reasons-grid { grid-template-columns: 1fr 1fr; }
}

.reason {
  background: var(--gray-50);
  border-left: 4px solid var(--gold-500);
  padding: 26px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.reason-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 10px;
}

.reason h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

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

/* ============================================
   ATTORNEY SECTION
   ============================================ */

.attorney-section { padding: 64px 0; }

@media (min-width: 960px) {
  .attorney-section { padding: 88px 0; }
}

.attorney-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 860px) {
  .attorney-inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }
}

.attorney-photo {
  position: relative;
}

.photo-placeholder {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.photo-placeholder svg {
  margin-bottom: 14px;
  opacity: 0.7;
}

.attorney-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 16px;
}

.attorney-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.attorney-points {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 520px) {
  .attorney-points { grid-template-columns: 1fr 1fr; }
}

.attorney-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-900);
}

.attorney-points svg {
  color: var(--gold-500);
  flex-shrink: 0;
}

/* ============================================
   STEPS (3-step process)
   ============================================ */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  counter-reset: step;
  position: relative;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.step {
  position: relative;
  padding: 28px 26px 26px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-align: center;
}

.step-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  color: var(--gold-500);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  border: 3px solid var(--gold-500);
}

.step h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-item[open] {
  border-color: var(--gold-500);
  box-shadow: 0 2px 12px rgba(201, 169, 97, 0.15);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  transition: color 0.15s ease;
}

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

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

.faq-item summary svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease, color 0.15s ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
  color: var(--gold-500);
}

.faq-body {
  padding: 0 22px 22px;
}

.faq-body p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 860px) {
  .final-cta { padding: 80px 0; }
  .final-cta-inner { grid-template-columns: 1.4fr 1fr; gap: 48px; }
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 8px 0 12px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  margin: 0;
  max-width: 580px;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 480px) {
  .final-cta-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (min-width: 860px) {
  .final-cta-actions { justify-content: flex-end; }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 32px;
  font-size: 13.5px;
  line-height: 1.65;
  padding-bottom: 100px; /* leave room for mobile sticky */
}

@media (min-width: 720px) {
  .site-footer { padding-bottom: 32px; }
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
  }
}

.logo-footer .logo-main { font-size: 16px; }
.logo-footer .logo-sub { font-size: 10px; }

.footer-contact {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact a {
  color: var(--gold-500);
  text-decoration: none;
}
.footer-contact a:hover { text-decoration: underline; }

.footer-disclaimers p {
  margin: 0 0 14px;
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.footer-disclaimers strong {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-links a:hover {
  color: var(--gold-500);
  text-decoration: none;
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */

.mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(8, 23, 46, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 720px) {
  .mobile-sticky { display: none; }
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 12px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.15s ease;
}

.mobile-sticky-call {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.mobile-sticky-cta {
  background: var(--gold-500);
  color: var(--navy-900);
  flex: 1.3;
}

/* leave padding so content isn't covered on mobile */
@media (max-width: 719px) {
  body { padding-bottom: 70px; }
  .site-footer { padding-bottom: 32px; }
}

/* ============================================
   ACCESSIBILITY HELPERS
   ============================================ */

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
