/* ============================================================
   750.Credit — style.css
   Dark Luxury | Charcoal / Electric Blue / Gold / Amber
   Fonts: Cormorant Garamond (display) + Barlow Condensed (UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Barlow+Condensed:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --charcoal:      #0f0f0f;
  --charcoal-mid:  #1a1a1a;
  --charcoal-card: #141414;
  --charcoal-gray: #1e1e1e;
  --gold:          #c9a84c;
  --gold-light:    #e4c46e;
  --gold-pale:     #f5e6b8;
  --amber:         #d4870a;
  --electric-blue: #4da6ff;
  --text-light:    #e8e0d0;
  --text-muted:    #9a8f7e;
  --text-dim:      #6b6258;
  --white:         #ffffff;
  --border-gold:   rgba(201,168,76,0.25);
  --border-subtle: rgba(255,255,255,0.07);
  --shadow-gold:   0 0 40px rgba(201,168,76,0.08);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--charcoal);
  color: var(--text-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

ul { list-style: none; padding: 0; }

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

/* ── Container ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Top Bar ── */
.topbar {
  background: var(--charcoal-mid);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
  padding: 0.55rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.topbar a { color: var(--gold); }
.topbar a:hover { color: var(--gold-light); }

/* ── Navbar ── */
.navbar {
  background: var(--charcoal-mid);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  min-height: 64px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-brand a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.nav-brand a:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.nav-links li a {
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.07);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 1.3rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 2px;
}

/* ── Hero ── */
.hero-img {
  width: 100%;
  overflow: hidden;
  max-height: 540px;
  position: relative;
}
.hero-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--charcoal));
}
.hero-img img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Sections ── */
.section {
  padding: 5rem 0;
}
.gray-bg {
  background: var(--charcoal-gray);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* ── Section Title ── */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
  line-height: 1.2;
}

.centered-title {
  text-align: center;
}

/* ── Intro ── */
.intro-section p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
  font-style: italic;
}

/* ── Checkmarks Grid ── */
.checkmarks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.85rem 1.5rem;
  margin-top: 0.5rem;
}
.checkmarks-grid span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Two Column ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Styled List ── */
.styled-list {
  list-style: none;
  padding: 0;
  margin-top: 0.75rem;
}
.styled-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 1rem;
}
.styled-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ── Process Box ── */
.process-box {
  background: var(--charcoal-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 2.5rem;
  box-shadow: var(--shadow-gold);
}
.process-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.process-box p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: var(--text-light);
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}

.flat-fee-badge {
  margin-top: 1.5rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

/* ── Centered Section ── */
.centered {
  text-align: center;
}
.centered p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  margin-top: 1rem;
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* ── Big Phone ── */
.big-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0.5rem 0 1rem;
}
.big-phone a {
  color: var(--gold);
}
.big-phone a:hover {
  color: var(--gold-light);
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--charcoal-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: var(--shadow-gold);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

/* ── Contact Strip ── */
.contact-strip {
  background: var(--charcoal-mid);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 4rem 0;
  text-align: center;
}
.contact-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-strip p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

/* ── Footer ── */
.footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border-gold);
  padding: 2.5rem 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
}
.footer a {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer a:hover { color: var(--gold); }
.footer small { color: var(--text-dim); }

/* ── Mobile ── */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--charcoal-mid);
    border-bottom: 1px solid var(--border-gold);
    padding: 1rem 2rem 1.5rem;
    gap: 0.1rem;
    z-index: 998;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li a {
    font-size: 0.9rem;
    padding: 0.55rem 0.5rem;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .section { padding: 3rem 0; }
  .section-title { font-size: 1.65rem; }
  .big-phone { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .checkmarks-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
