/* ============================================================
   BARDON CLEAN — Shared Stylesheet
   Colors: Cream #F5F0EB | Terracotta #C06B3C | Dark #1A1A1A | Mid #4A4A4A
   ============================================================ */

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

:root {
  --cream: #F5F0EB;
  --cream-dark: #EDE6DE;
  --terracotta: #C06B3C;
  --terracotta-dark: #A55830;
  --dark: #1A1A1A;
  --mid: #4A4A4A;
  --light: #7A7A7A;
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 4px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p { color: var(--mid); margin-bottom: 1rem; }
em { font-style: italic; color: var(--terracotta); }
strong { font-weight: 600; color: var(--dark); }

/* ---- NAV ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-logo span { color: var(--terracotta); font-style: italic; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}
.nav-phone:hover { color: var(--terracotta); }

.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: 0.3s; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,107,60,0.3); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: #333; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--dark);
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- LAYOUT HELPERS ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-cream-dark { background: var(--cream-dark); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  display: block;
}
.section-rule {
  width: 40px;
  height: 2px;
  background: var(--terracotta);
  margin-bottom: 1.5rem;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---- CHECKLIST ---- */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--mid);
  font-size: 0.95rem;
}
.checklist li::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.card-icon { font-size: 2rem; margin-bottom: 1rem; }

/* ---- STAT STRIP ---- */
.stat-strip {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-item .stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--light);
  margin-top: 0.25rem;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mid);
}
.trust-item .trust-icon { color: var(--terracotta); }

/* ---- REVIEW CARD ---- */
.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.review-stars { color: #F4B942; font-size: 1rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.95rem; color: var(--mid); font-style: italic; margin-bottom: 1rem; }
.review-author { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.review-sub { font-size: 0.8rem; color: var(--light); }

/* ---- PROCESS STEPS ---- */
.process-steps { display: flex; flex-direction: column; gap: 2rem; }
.process-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- HERO ---- */
.page-hero {
  background: var(--dark);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(192,107,60,0.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin-bottom: 2rem; }

/* ---- INCLUDE TABLE ---- */
.include-table { width: 100%; }
.include-section { margin-bottom: 2.5rem; }
.include-section h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* ---- STICKY MOBILE CTA ---- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 0.75rem 1.5rem;
  z-index: 99;
  gap: 0.75rem;
}
.sticky-cta .btn { flex: 1; text-align: center; padding: 0.8rem 1rem; font-size: 0.9rem; }
.sticky-cta a.sticky-call {
  flex: 1;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border: 2px solid var(--dark);
  border-radius: var(--radius);
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; display: inline-block; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--terracotta); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-stars { color: var(--terracotta); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat-strip { gap: 1.5rem; }
  .section { padding: 3.5rem 0; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .trust-bar { gap: 1rem; }
}

/* Mobile nav open state */
nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem 2rem;
  gap: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 99;
}
