/* LR Contracting Blog — Master Stylesheet */
:root {
  --gold: #C9A84C;
  --gold-dark: #9B7B2E;
  --gold-light: #F0D98A;
  --charcoal: #141414;
  --charcoal-mid: #1E1E1E;
  --white: #ffffff;
  --off-white: #F8F6F2;
  --body-text: #1C1C1C;
  --body-muted: #4A4A4A;
  --border: #E8E3D8;
  --muted-bg: #F2EFE8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--body-text); background: #fff; line-height: 1.7; }
a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── NAV ── */
.site-nav {
  background: var(--charcoal);
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.site-nav img { height: 78px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: #CCCCCC; font-size: .98rem; letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none; transition: color .25s; font-weight: 500; }
.nav-links a:hover { color: var(--gold); }
.nav-quote { border: 1px solid var(--gold) !important; color: var(--gold) !important; padding: 11px 22px; font-size:.95rem; letter-spacing:2px; transition: all .25s !important; }
.nav-quote:hover { background: var(--gold) !important; color: var(--charcoal) !important; }
.has-dd { position: relative; }
.has-dd > a { display: flex; align-items: center; gap: 6px; }
.dd-arrow { font-size: .7em; transition: transform .3s; }
.has-dd:hover .dd-arrow { transform: rotate(180deg); }
.dd-menu { position: absolute; top: 100%; left: -18px; background: var(--charcoal); min-width: 230px; padding: 8px 0; list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .25s; border-top: 2px solid var(--gold); box-shadow: 0 12px 30px rgba(0,0,0,.5); z-index: 200; }
.has-dd:hover .dd-menu, .has-dd:focus-within .dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-menu li { display: block; }
.dd-menu a { display: block; padding: 12px 22px; font-size:.88rem; letter-spacing: 1.5px; color: #CCCCCC; white-space: nowrap; transition: all .2s; }
.dd-menu a:hover { background: rgba(201,168,76,.1); color: var(--gold); padding-left: 28px; }

/* ── HERO ── */
.post-hero {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.post-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  opacity: .45;
  display: block;
}
.post-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 60px;
  background: linear-gradient(to top, rgba(20,20,20,.98) 0%, rgba(20,20,20,.6) 60%, transparent 100%);
}
.post-hero-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: .7;
}
.post-cat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.post-cat-line { width: 24px; height: 1px; background: var(--gold); }
.post-cat span {
  font-size: .6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.post-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 780px;
}
.post-meta {
  display: flex;
  gap: 20px;
  font-size:.86rem;
  color: #AAAAAA;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--off-white);
  padding: 12px 60px;
  font-size:.82rem;
  color: #888;
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb span { margin: 0 6px; }

/* ── LAYOUT ── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 60px 80px;
}

/* ── ARTICLE BODY ── */
.post-article { min-width: 0; }

.post-intro {
  font-size: 1.1rem;
  color: var(--body-muted);
  line-height: 1.9;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}

.post-article h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 44px 0 16px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
  line-height: 1.2;
}
.post-article h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.post-article h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 28px 0 10px;
}

.post-article p {
  font-size: .97rem;
  color: var(--body-text);
  line-height: 1.9;
  margin-bottom: 18px;
}

.post-article ul,
.post-article ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
.post-article li {
  font-size: .95rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 8px;
}

.post-article strong { color: var(--charcoal); font-weight: 700; }

/* ── INLINE IMAGES ── */
.post-img {
  width: 100%;
  border-radius: 2px;
  margin: 32px 0;
  object-fit: cover;
  display: block;
}
.post-img-caption {
  font-size:.84rem;
  color: #888;
  margin-top: -24px;
  margin-bottom: 32px;
  font-style: italic;
}
.post-img-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}
.post-img-half img { width: 100%; height: 220px; object-fit: cover; }

/* ── CALLOUT ── */
.callout {
  background: var(--muted-bg);
  border-left: 4px solid var(--gold);
  padding: 22px 26px;
  margin: 32px 0;
  border-radius: 0 4px 4px 0;
}
.callout strong {
  display: block;
  color: var(--charcoal);
  font-size: .92rem;
  margin-bottom: 8px;
}
.callout p {
  font-size: .88rem !important;
  color: var(--body-muted) !important;
  margin: 0 !important;
  line-height: 1.75 !important;
}

.callout-warn { border-left-color: #C0392B; background: #FDF3F2; }
.callout-tip { border-left-color: #2ECC71; background: #F0FDF4; }

/* ── PRICE TABLE ── */
.price-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: .88rem; }
.price-table th {
  background: var(--charcoal);
  color: #FFFFFF;
  padding: 12px 16px;
  text-align: left;
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.price-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--body-text);
}
.price-table tr:hover td { background: var(--off-white); }
.price-table .hl td { background: #F5F0E0; font-weight: 700; color: var(--charcoal); }

/* ── COMPARE GRID ── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.compare-box { padding: 22px; border: 1px solid var(--border); background: #fff; }
.compare-box.winner { border-color: var(--gold); background: #FDFAF0; }
.compare-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: .98rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.compare-box ul { padding-left: 18px; }
.compare-box li { font-size:.94rem; color: var(--body-muted); line-height: 1.7; margin-bottom: 5px; }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 0; margin: 24px 0; }
.timeline-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.tl-num {
  width: 42px; height: 42px;
  background: var(--gold);
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.tl-body strong { display: block; color: var(--charcoal); font-size: .92rem; margin-bottom: 5px; }
.tl-body p { font-size:.96rem !important; color: var(--body-muted) !important; line-height: 1.7 !important; margin: 0 !important; }

/* ── SIDEBAR ── */
.post-sidebar { position: sticky; top: 80px; height: fit-content; display: flex; flex-direction: column; gap: 24px; }

.sidebar-cta {
  background: var(--charcoal);
  padding: 30px;
}
.sidebar-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.sidebar-cta p { font-size:.92rem; color: #AAAAAA; line-height: 1.7; margin-bottom: 20px; }
.sidebar-cta .cta-btn {
  display: block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 13px 16px;
  text-align: center;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: background .25s;
  margin-bottom: 12px;
}
.sidebar-cta .cta-btn:hover { background: var(--gold-light); }
.sidebar-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.sidebar-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 24px;
}
.sidebar-box h4 {
  font-size: .62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 18px;
}
.related-post {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--charcoal);
  font-size:.94rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color .25s;
}
.related-post:last-child { border-bottom: none; padding-bottom: 0; }
.related-post:hover { color: var(--gold-dark); }
.related-post span { display: block; font-size: .7rem; color: #888; font-weight: 400; margin-top: 3px; }

.sidebar-stats { background: var(--charcoal); padding: 24px; }
.sidebar-stats h4 { font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 18px; }
.stat-row { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.stat-row:last-child { border-bottom: none; }
.stat-row .s-num { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.stat-row .s-lbl { font-size:.82rem; color: #888; }

/* ── ARTICLE CTA ── */
.article-cta {
  background: var(--gold);
  padding: 36px 40px;
  margin: 44px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.article-cta h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--charcoal); }
.article-cta p { font-size:.94rem; color: rgba(20,20,20,.65); margin-top: 4px; }
.article-cta a {
  background: var(--charcoal);
  color: #fff;
  padding: 13px 28px;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .25s;
}
.article-cta a:hover { background: #000; }

/* ── FOOTER ── */
.post-footer {
  background: #0A0A0A;
  padding: 36px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}
.post-footer p { font-size:.82rem; color: rgba(255,255,255,.2); }
.post-footer span { color: var(--gold); }
.post-footer-links { display: flex; gap: 22px; }
.post-footer-links a { font-size: .7rem; color: rgba(255,255,255,.25); letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: color .25s; }
.post-footer-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; gap: 0; padding: 40px 22px 60px; }
  .post-sidebar { position: static; margin-top: 48px; }
  .post-hero-content { padding: 36px 22px; }
  .breadcrumb { padding: 10px 22px; }
  .compare-grid { grid-template-columns: 1fr; }
  .article-cta { flex-direction: column; align-items: flex-start; }
  .post-img-half { grid-template-columns: 1fr; }
  .post-footer { flex-direction: column; gap: 14px; padding: 24px 22px; text-align: center; }
}
@media (max-width: 600px) {
  .site-nav { padding: 12px 20px; }
  .site-nav img { height: 38px; }
  .nav-links { display: none; }
  .price-table { font-size: .8rem; }
  .price-table th, .price-table td { padding: 9px 10px; }
}

.nav-burger{display:none;background:none;border:none;cursor:pointer;padding:8px;z-index:1100;position:relative;width:38px;height:30px;align-items:center;justify-content:center}.nav-burger span{display:block;width:24px;height:2px;background:var(--gold);position:relative;transition:all .3s}.nav-burger span::before,.nav-burger span::after{content:'';position:absolute;left:0;width:24px;height:2px;background:var(--gold);transition:all .3s}.nav-burger span::before{top:-7px}.nav-burger span::after{top:7px}.nav-burger.open span{background:transparent}.nav-burger.open span::before{top:0;transform:rotate(45deg)}.nav-burger.open span::after{top:0;transform:rotate(-45deg)}.mob-drawer{position:fixed;top:0;right:-100%;width:84%;max-width:340px;height:100vh;background:#0c0c0c;z-index:1050;padding:90px 30px 30px;transition:right .35s cubic-bezier(.4,0,.2,1);overflow-y:auto;border-left:1px solid rgba(201,168,76,.15);box-shadow:-20px 0 60px rgba(0,0,0,.6)}.mob-drawer.open{right:0}.mob-drawer ul{list-style:none;padding:0;margin:0}.mob-drawer > ul > li{border-bottom:1px solid rgba(255,255,255,.06)}.mob-drawer > ul > li > a{display:block;padding:18px 0;font-size:1rem;letter-spacing:2.5px;text-transform:uppercase;color:#ddd;font-weight:500;transition:color .25s;text-decoration:none}.mob-drawer > ul > li > a:hover{color:var(--gold)}.mob-drawer .mob-sub{padding:6px 0 14px 14px}.mob-drawer .mob-sub li a{display:block;padding:9px 0;font-size:.82rem;letter-spacing:1.5px;color:#999;text-transform:uppercase;text-decoration:none}.mob-drawer .mob-sub li a:hover{color:var(--gold)}.mob-drawer .mob-cta{display:block;margin-top:24px;background:var(--gold);color:#141414!important;text-align:center;padding:14px;font-size:.85rem;letter-spacing:2px;text-transform:uppercase;font-weight:700;text-decoration:none}.mob-overlay{position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:1040;opacity:0;pointer-events:none;transition:opacity .3s}.mob-overlay.open{opacity:1;pointer-events:auto}body.no-scroll{overflow:hidden}@media(max-width:900px){.nav-burger{display:flex}}

/* Sticky mobile call/quote bar */
.mob-bar{display:none;position:fixed;bottom:0;left:0;right:0;z-index:90;background:#0c0c0c;border-top:1px solid rgba(201,168,76,.18);padding:10px 14px;gap:10px;box-shadow:0 -6px 24px rgba(0,0,0,.4);transform:translateY(100%);transition:transform .35s ease}
.mob-bar.show{transform:translateY(0)}
.mob-bar-tel{display:flex;flex-direction:column;align-items:center;justify-content:center;width:62px;background:transparent;border:1px solid rgba(201,168,76,.4);color:#C9A84C!important;text-decoration:none;padding:8px 4px;gap:2px;font-size:.62rem;letter-spacing:1px;text-transform:uppercase;font-weight:700}
.mob-bar-tel svg{width:18px;height:18px}
.mob-bar-cta{flex:1;display:flex;align-items:center;justify-content:center;background:#C9A84C;color:#141414!important;text-decoration:none;font-size:.82rem;letter-spacing:2px;text-transform:uppercase;font-weight:700;padding:14px;text-align:center}
@media(max-width:900px){.mob-bar{display:flex}body.mob-bar-visible{padding-bottom:70px}}
