/*
Theme Name: BidRestore Consulting
Theme URI: https://charlesomajuwa.com
Author: Charles Omajuwa
Author URI: https://charlesomajuwa.com
Description: Premium authority theme for BidRestore Consulting, LLC — Control. Clarity. Compensation.
Version: 1.0.0
License: Private
Text Domain: bidrestore
Tags: business, consulting, professional
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --gold: #B8974A;
  --gold-light: #D4B575;
  --gold-dim: #8A6E32;
  --ink: #0E0E0C;
  --ink-mid: #2A2A25;
  --ink-light: #5A5A52;
  --cream: #F7F4EE;
  --cream-dark: #EDE9DF;
  --white: #FEFEFE;
  --rule: rgba(184,151,74,0.25);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
}

h1 { font-size: clamp(52px, 7vw, 88px); }
h2 { font-size: clamp(36px, 4vw, 54px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }

p { line-height: 1.8; }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--ink-light); }
.bg-ink { background: var(--ink); }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }

.gold-divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}
.gold-divider.centered { margin-left: auto; margin-right: auto; }

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-title.light { color: var(--cream); }
.section-title em { font-style: italic; color: var(--gold); }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); color: var(--ink); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(247,244,238,0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 0;
  cursor: pointer;
  border: none;
  border-bottom: 1px solid rgba(247,244,238,0.2);
  transition: all 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* =============================================
   NAVIGATION
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--ink);
  border-bottom: 1px solid rgba(184,151,74,0.3);
  height: 64px;
}

#site-header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.site-branding a span { color: rgba(184,151,74,0.5); font-weight: 300; }

#primary-navigation ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
#primary-navigation ul li a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.6);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item a { color: var(--gold); }

.nav-cta-btn {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
  margin-left: 1rem;
}
.nav-cta-btn:hover { background: var(--gold); color: var(--ink); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(184,151,74,0.4);
  color: var(--gold);
  padding: 6px 12px;
  cursor: pointer;
  font-size: 18px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  padding: 160px 3rem 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(184,151,74,0.06) 100%);
  pointer-events: none;
}
.hero-rule {
  position: absolute; right: 3rem; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 260px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.hero-content { max-width: 720px; position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-section h1 em { font-style: italic; color: var(--gold); }

.hero-tagline {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.4);
  margin-bottom: 2.5rem;
}
.hero-tagline strong { color: var(--gold); font-weight: 400; }

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(247,244,238,0.65);
  max-width: 520px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }

/* =============================================
   DIFFERENTIATOR STRIP
   ============================================= */
.diff-strip {
  background: var(--ink);
  padding: 40px 3rem;
  display: flex;
  border-top: 1px solid rgba(184,151,74,0.15);
  border-bottom: 1px solid rgba(184,151,74,0.15);
}

.diff-item {
  flex: 1;
  padding: 0 2.5rem;
  border-right: 1px solid rgba(184,151,74,0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.diff-item:first-child { padding-left: 0; }
.diff-item:last-child { border-right: none; }

.diff-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
}

.diff-text { font-size: 12px; color: rgba(247,244,238,0.55); line-height: 1.5; }
.diff-text strong { display: block; font-size: 13px; color: var(--cream); font-weight: 400; margin-bottom: 3px; }

/* =============================================
   SERVICES GRID
   ============================================= */
.services-intro { max-width: 560px; font-size: 15px; color: var(--ink-light); line-height: 1.8; margin-top: 1rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 4rem;
}

.service-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s;
}
.service-card:hover { background: var(--cream); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 1.5rem; right: 2rem;
  line-height: 1;
  pointer-events: none;
}

.service-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
}

.service-card p { font-size: 14px; color: var(--ink-light); line-height: 1.75; }

/* =============================================
   ABOUT PREVIEW (HOMEPAGE)
   ============================================= */
.about-preview {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-preview-text { padding: 100px 3rem; }
.about-preview-text p {
  font-size: 16px;
  color: rgba(247,244,238,0.65);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.about-preview-text p:last-of-type { margin-bottom: 2.5rem; }

.about-visual {
  background:
    linear-gradient(135deg, transparent 40%, rgba(184,151,74,0.06) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(184,151,74,0.03) 10px, rgba(184,151,74,0.03) 11px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(184,151,74,0.15);
  min-height: 480px;
}

.about-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  user-select: none;
}

.about-credential {
  position: absolute;
  bottom: 3rem; left: 3rem; right: 3rem;
  border-top: 1px solid rgba(184,151,74,0.2);
  padding-top: 1.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.cred-item { font-size: 11px; color: rgba(247,244,238,0.45); line-height: 1.5; }
.cred-item strong { display: block; color: var(--gold); font-weight: 400; font-size: 12px; }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--cream-dark);
  padding: 80px 3rem;
  text-align: center;
}
.cta-band .section-eyebrow { justify-content: center; }
.cta-band .section-eyebrow::before { display: none; }
.cta-band p {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  color: var(--ink-light);
  font-size: 15px;
  line-height: 1.8;
}

/* =============================================
   PAGE HEADERS
   ============================================= */
.page-header {
  background: var(--ink);
  padding: 140px 3rem 80px;
  border-bottom: 1px solid rgba(184,151,74,0.2);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-body { padding: 80px 3rem; max-width: 760px; }
.about-body p { font-size: 16px; line-height: 1.9; color: var(--ink-light); margin-bottom: 1.75rem; }
.about-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin: 3rem 0 1rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}
.cred-card {
  background: rgba(255,255,255,0.04);
  padding: 1.75rem;
}
.cred-card .label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.cred-card .value { font-size: 14px; color: var(--cream); font-weight: 400; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-list { padding: 80px 3rem; background: var(--white); }
.service-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--rule);
}
.service-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.service-item-num {
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  width: 80px;
}
.service-item-body .type-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.service-item-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.service-item-body p { font-size: 15px; color: var(--ink-light); line-height: 1.85; margin-bottom: 1rem; }
.service-item-body .best-for { font-size: 15px; color: var(--ink-light); line-height: 1.85; }
.service-item-body .best-for strong { font-weight: 500; color: var(--ink); }

/* =============================================
   FOUNDER'S LETTER
   ============================================= */
.letter-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 3rem;
  background: var(--white);
}
.letter-body p {
  font-size: 17px;
  line-height: 1.95;
  color: #3A3A32;
  margin-bottom: 2rem;
  font-weight: 300;
}
.letter-body p.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.letter-sig {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.letter-sig .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.letter-sig .title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-body {
  padding: 80px 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  background: var(--cream);
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
}
.contact-info p { font-size: 14px; color: var(--ink-light); line-height: 1.75; margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail .label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 60px;
  margin-top: 2px;
}
.contact-detail .val { font-size: 14px; color: var(--ink); }

.contact-qualifiers { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--rule); }
.contact-qualifiers .q-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.contact-qualifiers ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.contact-qualifiers ul li {
  font-size: 14px;
  color: var(--ink-light);
  padding-left: 1.25rem;
  position: relative;
}
.contact-qualifiers ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid rgba(184,151,74,0.15);
}

/* WP Contact Form 7 / WPForms overrides */
.wpcf7-form label,
.wpforms-field-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea,
.wpforms-field input,
.wpforms-field select,
.wpforms-field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(184,151,74,0.2);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpforms-field input:focus,
.wpforms-field textarea:focus {
  border-color: var(--gold);
}
.wpcf7-form textarea,
.wpforms-field textarea { resize: vertical; min-height: 120px; }

.wpcf7-submit,
.wpforms-submit {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 36px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  border-radius: 0;
}
.wpcf7-submit:hover,
.wpforms-submit:hover { background: var(--gold-light); }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--ink);
  padding: 3rem;
  border-top: 1px solid rgba(184,151,74,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: rgba(247,244,238,0.4);
  letter-spacing: 0.06em;
}
.footer-copy { font-size: 11px; color: rgba(247,244,238,0.25); }
#site-footer .footer-nav { display: flex; gap: 2rem; }
#site-footer .footer-nav a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
#site-footer .footer-nav a:hover { color: var(--gold); }

/* =============================================
   PAGE TRANSITIONS
   ============================================= */
.site-main { animation: fadeUp 0.5s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .diff-strip { flex-wrap: wrap; }
  .diff-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(184,151,74,0.15); padding: 1.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about-preview { grid-template-columns: 1fr; }
  .about-visual { min-height: 300px; }
  .contact-body { grid-template-columns: 1fr; gap: 3rem; }
  .credentials-grid { grid-template-columns: 1fr; }
  .service-item { flex-direction: column; gap: 1rem; }
  .service-item-num { font-size: 48px; width: auto; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.5rem; }
  nav .header-inner { padding: 0 1.5rem; }
  section, .services-list, .about-body, .letter-body { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero-section { padding: 120px 1.5rem 80px; }
  #primary-navigation { display: none; }
  #primary-navigation.is-open { display: block; position: absolute; top: 64px; left: 0; right: 0; background: var(--ink); padding: 1.5rem; border-top: 1px solid rgba(184,151,74,0.2); }
  #primary-navigation.is-open ul { flex-direction: column; gap: 1.25rem; }
  .menu-toggle { display: block; }
  #site-footer { flex-direction: column; text-align: center; }
  .diff-item { flex: 1 1 100%; }
}
