/* ============================================================
   BAYOU MOLD PROS — Shared Stylesheet
   Black & Gold | Mobile-First | Rank & Rent
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --black:       #0a0a0a;
  --black-soft:  #141414;
  --black-card:  #1a1a1a;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dark:   #8a6a1e;
  --gold-muted:  rgba(201,168,76,0.15);
  --gold-border: rgba(201,168,76,0.25);
  --cream:       #f5f0e8;
  --cream-dark:  #ede4d0;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-muted:  #5a5040;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Source Sans 3', 'Segoe UI', sans-serif;
  --max-w:       1100px;
  --radius:      6px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin-bottom: 0.85rem; }
p:last-child { margin-bottom: 0; }

/* ── UTILITIES ── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── NAV ── */
nav {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gold-border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span { color: var(--white); }
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
}
.mobile-menu {
  display: none;
  background: var(--black);
  border-top: 1px solid var(--gold-border);
  padding: 0.75rem 1.25rem 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.65rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 1.25rem 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 40px,
    rgba(201,168,76,0.03) 40px,
    rgba(201,168,76,0.03) 41px
  );
  pointer-events: none;
}
.hero-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.hero-badge {
  display: inline-block;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.1rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto 2rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  margin-top: 2.5rem;
  overflow: hidden;
}
.hero-stat {
  background: rgba(255,255,255,0.04);
  padding: 1rem 0.5rem;
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}
.hero-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── SERVICE PAGE HERO ── */
.page-hero {
  background: var(--black);
  padding: 2.5rem 1.25rem 2.25rem;
  border-bottom: 2px solid var(--gold);
}
.page-hero .container {}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p  { color: rgba(255,255,255,0.62); max-width: 640px; margin-bottom: 0; }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0.65rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--gold); padding: 0.75rem 1.25rem; }
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ── SECTIONS ── */
.section        { padding: 3.5rem 1.25rem; }
.section-dark   { background: var(--black); color: var(--white); }
.section-cream  { background: var(--cream-dark); }
.section-white  { background: var(--white); }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { color: var(--black); }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p  { color: rgba(255,255,255,0.58); }
.section-dark .eyebrow            { color: var(--gold); }
.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0.75rem auto 0;
}

/* ── SERVICE CARDS ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.service-card h3 { color: var(--black); margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.93rem; color: var(--text-muted); }
.service-card ul { padding-left: 1.1rem; margin-top: 0.6rem; }
.service-card ul li { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.service-card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
}
.service-card .card-link:hover { color: var(--gold); }

/* ── PROCESS STEPS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  counter-reset: steps;
}
.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  counter-increment: steps;
}
.process-step::before {
  content: "0" counter(steps);
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: rgba(201,168,76,0.15);
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step h3 { color: var(--gold-light); font-size: 1rem; margin-bottom: 0.4rem; }
.process-step p  { font-size: 0.88rem; color: rgba(255,255,255,0.52); margin: 0; }

/* ── AREAS GRID ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.area-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.area-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,0.12);
}
.area-card.hub { border-top: 3px solid var(--gold); }
.area-card .area-name {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.area-card .area-sub {
  font-size: 0.77rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.testimonial {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.75rem; }
.testimonial blockquote {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.testimonial cite {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-style: normal;
}
.testimonial cite span { color: var(--text-muted); font-weight: 400; text-transform: none; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--black);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 3rem 1.25rem;
  text-align: center;
}
.cta-band h2   { color: var(--white); margin-bottom: 0.6rem; }
.cta-band p    { color: rgba(255,255,255,0.58); margin-bottom: 1.75rem; }
.phone-display {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.2); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-chevron { font-size: 1rem; color: var(--gold-dark); transition: transform 0.2s; flex-shrink: 0; }
.faq-chevron.open { transform: rotate(180deg); }
.faq-a {
  font-size: 0.93rem;
  color: var(--text-muted);
  padding: 0 0 1rem;
  display: none;
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* ── CONTENT LAYOUT (service + city pages) ── */
.content-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
.content-body h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--black);
  margin: 1.75rem 0 0.55rem;
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--black);
  margin: 1.2rem 0 0.35rem;
}
.content-body p  { font-size: 0.96rem; color: var(--text-muted); line-height: 1.72; }
.content-body ul { padding-left: 1.2rem; margin-bottom: 0.85rem; }
.content-body ul li { font-size: 0.94rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.content-body a  { color: var(--gold-dark); font-weight: 600; text-decoration: none; }
.content-body a:hover { color: var(--gold); text-decoration: underline; }

/* ── SIDEBAR ── */
.sidebar-card {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.sidebar-card h4 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}
.sidebar-phone {
  display: block;
  font-family: var(--font-head);
  font-size: 1.55rem;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.sidebar-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.58); margin-bottom: 1rem; }
.sidebar-card .btn-primary { display: block; text-align: center; }
.checklist       { list-style: none; padding: 0; }
.checklist li {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.68);
  padding: 0.38rem 0 0.38rem 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.checklist li::before {
  content: '✓';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ── CONTACT FORM ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.75rem;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--gold-light); }
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}
.contact-detail { margin-bottom: 1rem; }
.contact-detail .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 0.15rem;
}
.contact-detail .value { font-size: 0.95rem; color: var(--text); }
.emergency-box {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.1rem 1.25rem;
  margin-top: 1.5rem;
}
.emergency-box strong { display: block; font-size: 0.88rem; color: var(--black); margin-bottom: 0.3rem; }
.emergency-box p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.about-creds {
  background: var(--black);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.about-creds h3 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.cred-list { list-style: none; padding: 0; }
.cred-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cred-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 2.75rem 1.25rem 1.5rem;
  border-top: 1px solid var(--gold-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto 2rem;
}
.footer-brand .logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.84rem; line-height: 1.6; }
.footer-col h4 {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  margin-bottom: 0.3rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-disclaimer {
  max-width: var(--max-w);
  margin: 0 auto 1.25rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.76rem;
  text-align: center;
}

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .content-wrap { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .section { padding: 2.5rem 1.25rem; }
  .trust-item span { display: none; }
}
