/* ============================================================
   Lightning Limo — Blog stylesheet (shared by blog.html + posts)
   Matches the site's dark / gold design system.
   ============================================================ */
:root {
  --gold: #C9A227; --gold-light: #E8D48A; --gold-dark: #9A7B1A;
  --black: #0A0A0A; --black-light: #1A1A1A; --black-lighter: #2A2A2A;
  --white: #FAFAFA; --white-dim: #E5E5E5; --gray: #888888;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--black); color: var(--white); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; }
a { color: var(--gold); }

/* ---------- Header ---------- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.95) 100%); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(201,162,39,0.1); transition: var(--transition); }
.header.scrolled { background: rgba(10,10,10,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.header-inner { max-width: 1400px; margin: 0 auto; padding: 0.75rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo img { height: 72px; width: auto; }
.logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--white); letter-spacing: 0.05em; }
.logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--white-dim); text-decoration: none; font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.phone-link { display: flex; align-items: center; gap: 0.5rem; color: var(--gold); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.phone-link svg { width: 18px; height: 18px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 1.75rem; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none; border: none; cursor: pointer; transition: var(--transition); }
.btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--black); }
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,162,39,0.3); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-large { padding: 1.15rem 2.5rem; font-size: 0.95rem; }

/* ---------- Blog hero ---------- */
.blog-hero { position: relative; padding: 9rem 2rem 4rem; }
.blog-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 80%, rgba(201,162,39,0.08) 0%, transparent 50%), linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%); z-index: 0; }
.blog-hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.8rem; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb span { color: var(--gold); }
.blog-badge { display: inline-flex; padding: 0.5rem 1rem; background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.3); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.blog-hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 1.25rem; }
.blog-hero h1 span { color: var(--gold); }
.blog-hero p { font-size: 1.1rem; color: var(--gray); max-width: 640px; margin: 0 auto; line-height: 1.8; }
.byline { margin-top: 1.5rem; font-size: 0.85rem; color: var(--white-dim); }
.byline span { color: var(--gold); }

/* ---------- Post-card grid (index) ---------- */
.post-list { padding: 3rem 2rem 5rem; }
.post-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.post-card { display: flex; flex-direction: column; background: linear-gradient(145deg, var(--black-lighter) 0%, var(--black-light) 100%); border: 1px solid rgba(201,162,39,0.1); text-decoration: none; overflow: hidden; transition: var(--transition); }
.post-card:hover { border-color: rgba(201,162,39,0.35); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.post-card .thumb { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; border-bottom: 1px solid rgba(201,162,39,0.15); }
.post-card .card-body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 0.6rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.75rem; }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray); }
.post-meta .cat { color: var(--gold); }
.post-meta .date { color: var(--gray); }
.post-card h2 { font-size: 1.5rem; color: var(--white); margin-bottom: 0.6rem; line-height: 1.25; transition: color var(--transition); }
.post-card:hover h2 { color: var(--gold-light); }
.post-card .excerpt { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }
.read-more { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); display: inline-flex; align-items: center; gap: 0.4rem; }
.read-more svg { width: 14px; height: 14px; transition: transform var(--transition); }
.post-card:hover .read-more svg { transform: translateX(4px); }

/* ---------- Single article ---------- */
.article-wrap { padding: 8.5rem 2rem 4rem; }
.article { max-width: 760px; margin: 0 auto; }
.article-header { margin-bottom: 2.5rem; text-align: center; }
.article-cat { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.article h1 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--white); margin-bottom: 1.25rem; line-height: 1.15; }
.article-byline { font-size: 0.85rem; color: var(--gray); display: flex; justify-content: center; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.article-byline .author { color: var(--white-dim); }
.article-byline .author b { color: var(--gold); font-weight: 600; }
.article-byline .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray); }
.article-hero-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; margin: 0 0 2.5rem; border: 1px solid rgba(201,162,39,0.2); box-shadow: 0 30px 60px rgba(0,0,0,0.5); display: block; }
.article-body { font-size: 1.05rem; color: var(--white-dim); line-height: 1.9; }
.article-body p { margin-bottom: 1.5rem; }
.article-body h2 { font-size: 1.9rem; color: var(--white); margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.4rem; color: var(--gold-light); margin: 2rem 0 0.75rem; }
.article-body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,162,39,0.4); transition: var(--transition); }
.article-body a:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }
.article-body ul { margin: 0 0 1.5rem 1.25rem; }
.article-body li { margin-bottom: 0.6rem; }
.article-body blockquote { margin: 2rem 0; padding: 1.25rem 1.75rem; background: rgba(201,162,39,0.06); border-left: 3px solid var(--gold); color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; line-height: 1.5; }
.article-body strong { color: var(--white); }
.pull-cta { margin: 3rem 0 1rem; padding: 2rem; background: linear-gradient(145deg, var(--black-lighter) 0%, var(--black) 100%); border: 1px solid rgba(201,162,39,0.25); text-align: center; }
.pull-cta h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 0.5rem; }
.pull-cta p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1.5rem; }
.pull-cta .btn { margin: 0 0.35rem 0.5rem; }
.article-tags { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(201,162,39,0.15); display: flex; flex-wrap: wrap; gap: 0.6rem; }
.article-tags a { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white-dim); border: 1px solid rgba(201,162,39,0.2); padding: 0.35rem 0.8rem; text-decoration: none; transition: var(--transition); }
.article-tags a:hover { border-color: var(--gold); color: var(--gold); }
.back-to-blog { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); text-decoration: none; }

/* ---------- CTA + footer ---------- */
.cta { padding: 5rem 2rem; background: linear-gradient(145deg, var(--black-light) 0%, var(--black) 100%); position: relative; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,162,39,0.1) 0%, transparent 60%); }
.cta-inner { position: relative; max-width: 800px; margin: 0 auto; text-align: center; }
.cta h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--white); margin-bottom: 1rem; }
.cta p { color: var(--gray); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.footer { background: var(--black); border-top: 1px solid rgba(201,162,39,0.1); padding: 3rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer p { color: var(--gray); font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); }

/* ---------- Text-us floating button ---------- */
.text-us-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1100; display: flex; align-items: center; gap: 0.5rem; padding: 0.9rem 1.4rem; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--black); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none; border-radius: 50px; box-shadow: 0 8px 24px rgba(0,0,0,0.4); transition: var(--transition); }
.text-us-fab:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,162,39,0.35); }
.text-us-fab svg { width: 20px; height: 20px; }

/* ---------- Mobile ---------- */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-menu-btn span { display: block; width: 25px; height: 2px; background: var(--gold); }
@media (max-width: 1024px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .nav-links, .header-cta .phone-link { display: none; }
  .mobile-menu-btn { display: flex; }
  .post-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .article-wrap { padding-top: 7rem; }
}
@media (max-width: 480px) { .text-us-fab { bottom: 1rem; right: 1rem; padding: 0.85rem 1.2rem; font-size: 0.78rem; } }
