/* ============================================================
   FLOORING EXPERTS NOW — Shared Stylesheet
   Aesthetic: Warm editorial / professional trades
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --oak: #8B5E3C;
  --oak-light: #C49A6C;
  --oak-pale: #F5EDE3;
  --charcoal: #1C1C1E;
  --charcoal-mid: #3A3A3C;
  --mid: #6E6E73;
  --border: #E5DDD5;
  --white: #FDFAF7;
  --green: #2D6A4F;
  --green-light: #E8F5EE;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(28,28,30,0.08);
  --shadow-lg: 0 8px 40px rgba(28,28,30,0.13);
  --max: 1100px;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- TOPBAR ---- */
.topbar {
  background: var(--charcoal);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar a { color: var(--oak-light); text-decoration: none; font-weight: 600; }

/* ---- NAV ---- */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--oak); }
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--charcoal-mid);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--oak-pale); color: var(--oak); }
.nav-cta {
  background: var(--oak);
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--charcoal) !important; color: #fff !important; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 24px;
  font-size: 15px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  color: #fff;
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: 720px; margin: 0 auto; position: relative; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oak-light);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero p {
  font-size: clamp(16px, 2.5vw, 19px);
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  font-weight: 300;
}
.cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--oak);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(139,94,60,0.4);
}
.btn-primary:hover { background: #7a5234; transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--oak-pale);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}
.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal-mid);
}
.trust-item svg { color: var(--oak); flex-shrink: 0; }

/* ---- SECTION ---- */
.section { padding: 72px 24px; }
.section-alt { background: var(--oak-pale); }
.section-dark { background: var(--charcoal); color: #fff; }
.container { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--mid);
  max-width: 600px;
  margin-bottom: 48px;
  font-weight: 300;
}

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--oak-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
.card p { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ---- COST TABLE ---- */
.cost-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.cost-table th {
  background: var(--charcoal);
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cost-table th:first-child { border-radius: 8px 0 0 0; }
.cost-table th:last-child { border-radius: 0 8px 0 0; }
.cost-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); }
.cost-table tr:hover td { background: var(--oak-pale); }
.cost-table .highlight { color: var(--green); font-weight: 600; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  background: var(--white);
  transition: background 0.2s;
  user-select: none;
  gap: 12px;
}
.faq-q:hover { background: var(--oak-pale); }
.faq-q .icon { font-size: 20px; flex-shrink: 0; transition: transform 0.3s; color: var(--oak); font-weight: 300; }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .icon { transform: rotate(45deg); }

/* ---- CALL STRIP ---- */
.call-strip {
  background: var(--oak);
  color: #fff;
  padding: 48px 24px;
  text-align: center;
}
.call-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 12px;
}
.call-strip p { font-size: 16px; opacity: 0.88; margin-bottom: 28px; font-weight: 300; }
.phone-link {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.phone-link:hover { opacity: 0.88; }
.badge-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.badge-pill {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
}

/* ---- PROCESS STEPS ---- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--oak);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}
.step-content h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--mid); }

/* ---- FOOTER ---- */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { color: #fff; font-size: 22px; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.8; }
footer h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; }
footer ul a:hover { color: var(--oak-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 12px;
  line-height: 1.8;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--oak-light); }
.disclaimer {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px;
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--oak-pale);
  padding: 12px 24px;
  font-size: 13px;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--oak); text-decoration: none; }
.breadcrumb span { margin: 0 6px; }

/* ---- PROS/CONS ---- */
.pro-con-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pro-box { background: var(--green-light); border: 1px solid #b7dfca; border-radius: var(--radius); padding: 20px; }
.con-box { background: #fff5f5; border: 1px solid #fbb; border-radius: var(--radius); padding: 20px; }
.pro-box h4 { color: var(--green); font-size: 15px; font-weight: 600; margin-bottom: 12px; }
.con-box h4 { color: #c0392b; font-size: 15px; font-weight: 600; margin-bottom: 12px; }
.pro-box li, .con-box li { font-size: 14px; color: var(--charcoal-mid); margin-bottom: 8px; padding-left: 4px; list-style: none; }
.pro-box li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.con-box li::before { content: '✗ '; color: #c0392b; font-weight: 700; }

/* ---- CONTENT ARTICLE ---- */
.article-body { max-width: 780px; }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--charcoal);
}
.article-body h3 { font-size: 18px; font-weight: 600; margin: 28px 0 10px; }
.article-body p { font-size: 15px; color: var(--charcoal-mid); margin-bottom: 16px; line-height: 1.85; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 16px; }
.article-body li { font-size: 15px; color: var(--charcoal-mid); margin-bottom: 8px; line-height: 1.75; }

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: var(--oak-pale);
  border-left: 4px solid var(--oak);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--charcoal-mid);
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .pro-con-grid { grid-template-columns: 1fr; }
  .hero { padding: 52px 20px 48px; }
  .section { padding: 52px 20px; }
  .nav-inner { padding: 0; }
}
@media (max-width: 480px) {
  .cost-table th, .cost-table td { padding: 10px 12px; font-size: 13px; }
  .btn-primary, .btn-secondary { padding: 14px 22px; font-size: 15px; }
}
