/*
Theme Name: ReSolved Capital LLC
Theme URI: https://resolvedcap.com
Author: ReSolved Capital LLC
Author URI: https://resolvedcap.com
Description: Custom theme for ReSolved Capital LLC — Direct home buyer and real estate wholesaler serving Southern California.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: resolved-capital
Tags: business, real-estate, one-page, custom-colors
*/

/* ============================================================
   DESIGN SYSTEM — Industrial Authority
   Palette: Charcoal #1a1a1a, Gold #F5B800, Off-white #f8f6f1
   Typography: Oswald (headings) + Source Sans 3 (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: #f8f6f1;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.gold { color: #F5B800; }

.section-label {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.section-label span {
  background: rgba(245, 184, 0, 0.15);
  color: #c49200;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #F5B800;
  color: #1a1a1a;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-gold:hover { background: #e0a800; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1a1a1a;
  color: #F5B800;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-dark:hover { background: #2d2d2d; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1a1a1a;
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: none;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #F5B800; }

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) { .nav-cta { display: flex; } }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #F5B800;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.nav-phone:hover { opacity: 0.8; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 1024px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: #111;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
#home { position: relative; }

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/rc-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.88) 0%,
    rgba(20,20,20,0.78) 50%,
    rgba(30,20,0,0.65) 100%
  );
}

#hero .container { position: relative; z-index: 1; padding-top: 4rem; padding-bottom: 4rem; }

.hero-content { max-width: 680px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,184,0,0.12);
  border: 1px solid rgba(245,184,0,0.3);
  color: #F5B800;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
}
.hero-badge .check { color: #F5B800; font-size: 1rem; }

/* ============================================================
   STATS BAR
   ============================================================ */
#stats {
  background: #F5B800;
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.7);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  position: relative;
  background: #1a1a1a;
  padding: 6rem 0;
  overflow: hidden;
}

.hiw-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/rc-process-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

#how-it-works .container { position: relative; z-index: 1; }

.hiw-header { text-align: center; margin-bottom: 4rem; }
.hiw-header .section-label span { background: rgba(245,184,0,0.12); color: #F5B800; }

.hiw-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}
.hiw-desc { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(5, 1fr); } }

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 1.5rem;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.step-card:hover { border-color: rgba(245,184,0,0.4); background: rgba(245,184,0,0.04); }

.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(245,184,0,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.step-body { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.hiw-callout {
  background: linear-gradient(135deg, #F5B800, #e0a800);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .hiw-callout { flex-direction: row; align-items: center; justify-content: space-between; }
}
.hiw-callout-text {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}
.hiw-callout-sub { font-size: 0.9rem; color: rgba(26,26,26,0.7); margin-top: 0.5rem; }

/* ============================================================
   SITUATIONS
   ============================================================ */
#situations { padding: 6rem 0; background: #f8f6f1; }

.situations-header { text-align: center; margin-bottom: 3rem; }
.situations-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.situations-desc { color: #555; max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.situations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .situations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .situations-grid { grid-template-columns: repeat(4, 1fr); } }

.situation-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #e8e4dd;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.situation-item:hover { border-color: #F5B800; box-shadow: 0 2px 12px rgba(245,184,0,0.15); }

.situation-dot {
  width: 8px;
  height: 8px;
  background: #F5B800;
  border-radius: 50%;
  flex-shrink: 0;
}
.situation-text { font-size: 0.9rem; font-weight: 600; color: #1a1a1a; }

.situations-cta { text-align: center; }
.situations-cta p { font-size: 1.05rem; color: #555; margin-bottom: 1.5rem; }

/* ============================================================
   SELLING OPTIONS
   ============================================================ */
#options { padding: 6rem 0; background: #fff; }

.options-header { text-align: center; margin-bottom: 4rem; }
.options-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.options-desc { color: #555; max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .options-grid { grid-template-columns: repeat(3, 1fr); } }

.option-card {
  background: #f8f6f1;
  border: 1px solid #e8e4dd;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.option-card:hover { border-color: #F5B800; box-shadow: 0 4px 24px rgba(245,184,0,0.12); }
.option-card.featured {
  background: #1a1a1a;
  border-color: #F5B800;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.option-icon { font-size: 2rem; }
.option-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}
.option-card.featured .option-title { color: #fff; }
.option-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F5B800;
}
.option-desc { font-size: 0.95rem; color: #555; line-height: 1.6; }
.option-card.featured .option-desc { color: rgba(255,255,255,0.65); }

.option-features { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.option-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #333;
}
.option-card.featured .option-feature { color: rgba(255,255,255,0.8); }
.option-feature .check { color: #F5B800; font-weight: 700; }

.broker-callout {
  background: #1a1a1a;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .broker-callout { flex-direction: row; align-items: center; justify-content: space-between; }
}
.broker-callout-text h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.broker-callout-text p { font-size: 0.95rem; color: rgba(255,255,255,0.65); max-width: 560px; }

/* ============================================================
   WHY US
   ============================================================ */
#why-us { padding: 6rem 0; background: #f8f6f1; }

.why-header { text-align: center; margin-bottom: 4rem; }
.why-title { font-size: clamp(2rem, 4vw, 3rem); color: #1a1a1a; margin-bottom: 1rem; }
.why-desc { color: #555; max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.why-reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) { .why-reasons { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-reasons { grid-template-columns: repeat(3, 1fr); } }

.reason-card {
  background: #fff;
  border: 1px solid #e8e4dd;
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.reason-card:hover { border-color: #F5B800; box-shadow: 0 4px 20px rgba(245,184,0,0.1); }

.reason-icon { font-size: 2rem; margin-bottom: 1rem; }
.reason-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.reason-body { font-size: 0.9rem; color: #555; line-height: 1.65; }

/* Comparison Table */
.comparison-wrap { overflow-x: auto; margin-bottom: 4rem; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comparison-table th, .comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #e8e4dd;
}
.comparison-table thead th {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
}
.comparison-table thead th.col-rc { color: #F5B800; }
.comparison-table tbody tr:nth-child(even) { background: rgba(0,0,0,0.02); }
.comparison-table tbody td:first-child { font-weight: 600; color: #333; }
.col-rc { background: rgba(245,184,0,0.05); }
.check-yes { color: #16a34a; font-weight: 700; }
.check-no { color: #dc2626; }

/* Aaron Quote */
.aaron-quote {
  background: #1a1a1a;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .aaron-quote { flex-direction: row; align-items: center; }
}
.aaron-logo { flex-shrink: 0; }
.aaron-logo img { width: 120px; height: auto; }
.aaron-text blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
  border-left: 3px solid #F5B800;
  padding-left: 1.25rem;
}
.aaron-attribution {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.aaron-attribution strong { color: #F5B800; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { padding: 6rem 0; background: #1a1a1a; }

.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .section-label span { background: rgba(245,184,0,0.12); color: #F5B800; }
.testimonials-title { font-size: clamp(2rem, 4vw, 3rem); color: #fff; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(245,184,0,0.4); }

.testimonial-stars { color: #F5B800; font-size: 1rem; letter-spacing: 0.1em; }
.testimonial-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: #F5B800;
  color: #1a1a1a;
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
.testimonial-location { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
#contact { padding: 6rem 0; background: #f8f6f1; }

.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-title { font-size: clamp(2rem, 4vw, 3rem); color: #1a1a1a; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; } }

/* Sidebar */
.contact-sidebar {
  background: #1a1a1a;
  padding: 2.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-sidebar-logo img { width: 160px; height: auto; }
.contact-sidebar h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: #fff;
}
.contact-sidebar p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-info-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.25rem; }
.contact-info-value { font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.contact-info-value a { color: #F5B800; transition: opacity 0.2s; }
.contact-info-value a:hover { opacity: 0.8; }

.contact-trust { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 0.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.contact-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.contact-trust-item .check { color: #F5B800; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid #e8e4dd;
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.contact-form-wrap > #form-container > p { font-size: 0.875rem; color: #888; margin-bottom: 2rem; }

.form-row { margin-bottom: 1.25rem; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #555; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  background: #fafafa;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #F5B800; background: #fff; }
.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit { margin-top: 1.5rem; }
.form-submit .btn-gold { width: 100%; justify-content: center; font-size: 1.1rem; padding: 1rem 2rem; }

.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: #F5B800;
  color: #1a1a1a;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}
.form-success h3 { font-size: 1.75rem; color: #1a1a1a; margin-bottom: 1rem; }
.form-success p { color: #555; line-height: 1.6; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { padding: 6rem 0; background: #1a1a1a; }

.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header .section-label span { background: rgba(245,184,0,0.12); color: #F5B800; }
.faq-title { font-size: clamp(2rem, 4vw, 3rem); color: #fff; }

.faq-list { max-width: 800px; margin: 0 auto 3rem; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item { border: 1px solid rgba(255,255,255,0.08); }
.faq-item.open { border-color: rgba(245,184,0,0.4); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-question-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.faq-chevron {
  color: #F5B800;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}

.faq-cta { text-align: center; }
.faq-cta p { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; font-size: 1.05rem; }
.faq-cta strong { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #111;
  padding: 5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; } }

.footer-brand-logo { margin-bottom: 1rem; }
.footer-brand-logo img { height: 36px; width: auto; }
.footer-brand-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 0.75rem; }
.footer-service-area { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
}
.footer-social:hover { border-color: #F5B800; color: #F5B800; background: rgba(245,184,0,0.08); }

.footer-links-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: #F5B800; }

.footer-contact-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.2rem;
}
.footer-contact-item .value { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-contact-item .value a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact-item .value a:hover { color: #F5B800; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: #F5B800; }

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 639px) {
  .hero-buttons { flex-direction: column; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; }
  .hiw-callout { flex-direction: column; }
  .broker-callout { flex-direction: column; }
  .aaron-quote { flex-direction: column; }
  .contact-form-wrap { padding: 1.5rem; }
  .contact-sidebar { padding: 1.5rem; }
}
