/* ===== MIDDLE TENNESSEE FLOORING — SHARED STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

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

:root {
  --oak:       #B8843A;
  --oak-lt:    #D9B47A;
  --oak-dk:    #6B4A1E;
  --cream:     #F9F5EE;
  --cream-dk:  #EFE9DC;
  --charcoal:  #1C1915;
  --mid:       #3D3529;
  --muted:     #8B7D6A;
  --border:    rgba(184,132,58,0.18);
  --white:     #ffffff;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Outfit', system-ui, sans-serif;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(249,245,238,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 70px;
}
.nav-brand { display: flex; flex-direction: column; gap: 1px; text-decoration: none; }
.nav-brand-main { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--charcoal); letter-spacing: 0.03em; }
.nav-brand-sub  { font-size: 10px; font-weight: 400; color: var(--oak); letter-spacing: 0.2em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links li a {
  display: block; padding: 0 1.1rem; height: 70px; line-height: 70px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
  position: relative;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: 0; left: 1.1rem; right: 1.1rem;
  height: 2px; background: var(--oak); transform: scaleX(0);
  transform-origin: center; transition: transform 0.2s;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--charcoal); }
.nav-links li a:hover::after, .nav-links li a.active::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border); min-width: 230px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  height: auto; line-height: 1.4; padding: 10px 16px; display: block;
  font-size: 12px; border-bottom: 1px solid rgba(184,132,58,0.1);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.nav-cta {
  margin-left: 1.5rem;
  background: var(--charcoal); color: var(--white) !important;
  padding: 0 20px; border-radius: 2px; font-size: 12px !important;
  letter-spacing: 0.1em; font-weight: 500 !important; height: 38px !important;
  line-height: 38px !important; display: inline-block;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--oak-dk) !important; color: var(--white) !important; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--charcoal);
  padding: 5rem 4rem 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(184,132,58,0.04) 79px, rgba(184,132,58,0.04) 80px);
}
.page-hero-inner { position: relative; max-width: 900px; }
.page-hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--oak-lt); margin-bottom: 14px;
}
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--oak); }
.page-hero h1 {
  font-family: var(--serif); font-size: 56px; font-weight: 700;
  color: var(--white); line-height: 1.05; letter-spacing: -0.01em;
}
.page-hero h1 em { color: var(--oak-lt); font-style: normal; }
.page-hero-sub {
  margin-top: 1rem; font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.6); max-width: 580px; line-height: 1.7;
}

/* ── VALUE BAR ── */
.value-bar {
  background: var(--mid);
  padding: 18px 4rem;
  display: flex; gap: 0; overflow-x: auto;
}
.value-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0 2.5rem; flex-shrink: 0;
  border-right: 1px solid rgba(184,132,58,0.2);
}
.value-item:first-child { padding-left: 0; }
.value-item:last-child  { border-right: none; }
.value-icon { font-size: 18px; color: var(--oak); }
.value-text strong { display: block; font-size: 13px; font-weight: 500; color: var(--white); }
.value-text span    { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.5); }

/* ── SECTION WRAPPER ── */
.section { padding: 5rem 4rem; max-width: 1300px; margin: 0 auto; }
.section-sm { padding: 3rem 4rem; max-width: 1300px; margin: 0 auto; }
.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--oak); margin-bottom: 1.5rem;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-title {
  font-family: var(--serif); font-size: 40px; font-weight: 700;
  color: var(--charcoal); line-height: 1.15; margin-bottom: 1rem;
}
.section-body {
  font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--muted);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 2px; cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  transition: all 0.2s; border: none;
}
.btn-dark  { background: var(--charcoal); color: var(--white); }
.btn-dark:hover  { background: var(--oak-dk); }
.btn-oak   { background: var(--oak); color: var(--white); }
.btn-oak:hover   { background: var(--oak-dk); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal);
  padding: 4rem 4rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(184,132,58,0.15);
}
.footer-brand-name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-brand-tagline { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }
.footer-contact-items { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact-item:hover { color: var(--oak-lt); }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--oak); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--oak-lt); }
.footer-bottom {
  padding-top: 2rem; display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.3); }
.footer-warranty { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.5); }
.footer-warranty strong { color: var(--oak-lt); }

/* ── PROS CONS TABLE ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 2rem 0; }
.pros-col, .cons-col { padding: 1.5rem; }
.pros-col { background: rgba(184,132,58,0.06); }
.cons-col { background: rgba(28,25,21,0.04); }
.pc-title { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem; }
.pros-col .pc-title { color: var(--oak-dk); }
.cons-col .pc-title { color: var(--muted); }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pc-list li { font-size: 14px; font-weight: 300; color: var(--mid); padding-left: 18px; position: relative; }
.pc-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; }
.pros-col .pc-list li::before { background: var(--oak); }
.cons-col .pc-list li::before { background: var(--muted); opacity: 0.5; }

/* ── UTILITY ── */
.full-bleed { max-width: none !important; padding-left: 0 !important; padding-right: 0 !important; }
.bg-white { background: var(--white); }
.bg-cream-dk { background: var(--cream-dk); }
.bg-charcoal { background: var(--charcoal); }
img { max-width: 100%; display: block; }

/* ── LOGO ── */
.nav-logo-img { width: 44px; height: 30px; flex-shrink: 0; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand-text { display: flex; flex-direction: column; gap: 1px; }

/* ── CREDIT CARDS ── */
.cc-bar {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.cc-badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 24px; padding: 0 8px; border-radius: 3px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.04em; color: white;
  flex-shrink: 0;
}
.cc-visa       { background: #1A1F71; min-width: 38px; font-style: italic; font-size: 12px; font-weight: 900; }
.cc-mc         { background: transparent; padding: 0; position: relative; width: 36px; height: 22px; }
.cc-mc-left    { position: absolute; left: 0; width: 22px; height: 22px; border-radius: 50%; background: #EB001B; }
.cc-mc-right   { position: absolute; right: 0; width: 22px; height: 22px; border-radius: 50%; background: #F79E1B; }
.cc-mc-overlap { position: absolute; left: 7px; width: 22px; height: 22px; border-radius: 50%; background: #FF5F00; opacity: 0.7; }
.cc-amex       { background: #007BC1; font-size: 9px; }
.cc-discover   { background: #FF6600; font-size: 9px; }
.cc-cash       { background: #2D7A3A; font-size: 9px; }
.cc-check      { background: #555; font-size: 9px; }
.cc-label      { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.4); margin-right: 4px; }

/* ── REAL LOGO adjustments ── */
.nav-logo-img { height: 52px; width: auto; flex-shrink: 0; }
.site-nav { height: 76px; }
.nav-links li a { height: 76px; line-height: 76px; }
.nav-links li a::after { bottom: 0; }
.nav-cta { height: 40px !important; line-height: 40px !important; }

/* ── TOP INFO BAR ── */
.top-bar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(184,132,58,0.2);
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.top-bar-item:hover { color: var(--oak-lt); }
.top-bar-item .tbi-dot {
  width: 5px; height: 5px;
  background: var(--oak);
  border-radius: 50%;
  flex-shrink: 0;
}
.top-bar-right {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.site-nav {
  position: sticky;
  top: 0;
}
.top-bar + .site-nav {
  top: 0;
}
/* Make top-bar + nav stick together */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-header .site-nav {
  position: static;
}
