/* Lucac LLC — shared styles. All pages link this file.
   Chatbot styles live in /chatbot.js (self-injects). */

:root {
  --bg: #1a1714;
  --bg2: #211e19;
  --bg3: #2a2620;
  --surface: #332e27;
  --border: #4a4238;
  --text: #e8e0d4;
  --text-dim: #a89f91;
  --text-bright: #fff8ee;
  --accent: #d4915c;
  --accent-bright: #e8a76e;
  --accent-glow: rgba(212,145,92,0.15);
  --green: #7db87a;
  --green-dim: rgba(125,184,122,0.12);
  --red: #c75f4a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Archivo', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* ACCESSIBILITY — skip link + visible keyboard focus (mouse focus stays clean) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--bg); padding: 10px 18px;
  font-weight: 700; text-decoration: none; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 2px; border-radius: 2px; }

/* NAV (shared, sticky) */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,23,20,0.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 16px 0;
}
nav.site-nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.3rem; font-weight: 900; letter-spacing: -0.5px; color: var(--text-bright); text-decoration: none; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 22px; list-style: none; align-items: center; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-cta { background: var(--accent); color: var(--bg) !important; padding: 8px 18px; border-radius: 6px; font-weight: 700 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--accent-bright) !important; }
.nav-cta.active { color: var(--bg) !important; }
.nav-phone { color: var(--text-bright) !important; font-weight: 700 !important; display: inline-flex; align-items: center; gap: 6px; }
.nav-phone:hover { color: var(--accent) !important; }
.nav-phone-icon { color: var(--accent); }

/* MOBILE NAV */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }

/* MOBILE STICKY CTA BAR (bottom — visible only on mobile) */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: var(--bg2); border-top: 1px solid var(--border);
    padding: 10px 12px; gap: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
  .mobile-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 8px; border-radius: 8px; text-decoration: none;
    font-weight: 700; font-size: 0.92rem;
    min-height: 44px;
  }
  .mobile-cta-call { background: transparent; color: var(--text-bright); border: 1px solid var(--accent); }
  .mobile-cta-audit { background: var(--accent); color: var(--bg); }
  .mobile-cta-icon { font-size: 1.05rem; }
  /* push page content above the sticky bar */
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  /* lift the chatbot float button above the sticky bar */
  #lucac-chat-btn { bottom: calc(82px + env(safe-area-inset-bottom)) !important; }
  /* hide nav phone link on mobile since the sticky bar covers it */
  .nav-phone-li { display: none; }
}

/* Spacer to push content below fixed nav on pages without hero padding */
.nav-spacer { height: 80px; }

/* HERO */
.hero { padding: 180px 0 120px; position: relative; }
.hero::before {
  content: ''; position: absolute; top: 60px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 2px; background: var(--accent); }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.05;
  letter-spacing: -2px; color: var(--text-bright); max-width: 800px; margin-bottom: 28px;
}
.hero h1 em { font-style: normal; color: var(--accent); position: relative; }
.hero h1 em::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 4px; background: var(--accent); opacity: 0.3; border-radius: 2px;
}
.hero-sub {
  font-family: 'Newsreader', serif; font-size: 1.35rem; color: var(--text-dim);
  max-width: 560px; line-height: 1.7; margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* Page hero (lighter than home hero, used on inner pages) */
.page-hero { padding: 140px 0 60px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -1.5px; color: var(--text-bright); margin-bottom: 16px; }
.page-hero p { font-family: 'Newsreader', serif; font-size: 1.2rem; color: var(--text-dim); max-width: 640px; }

/* SECTION HEADERS (reusable) */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; color: var(--text-bright); margin-bottom: 12px; }
.section-header p { font-family: 'Newsreader', serif; font-size: 1.15rem; color: var(--text-dim); max-width: 600px; margin: 0 auto; }

/* PAIN POINTS */
.pain { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain-header { text-align: center; margin-bottom: 60px; }
.pain-header h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; color: var(--text-bright); margin-bottom: 12px; }
.pain-header p { font-family: 'Newsreader', serif; font-size: 1.15rem; color: var(--text-dim); }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.pain-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; transition: border-color 0.3s, transform 0.3s;
}
.pain-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.pain-card .problem {
  font-size: 1.1rem; font-weight: 700; color: var(--text-bright); margin-bottom: 8px;
  display: flex; align-items: flex-start; gap: 10px;
}
.pain-card .problem::before { content: '×'; color: var(--red); font-size: 1.4rem; font-weight: 900; line-height: 1.2; flex-shrink: 0; }
.pain-card .fix {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--border); color: var(--green);
  font-weight: 600; font-size: 0.95rem;
}
.pain-card .fix::before { content: '✓'; font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }

/* SERVICES */
.services-header { text-align: center; margin-bottom: 60px; }
.services-header h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; color: var(--text-bright); margin-bottom: 12px; }
.services-header p { font-family: 'Newsreader', serif; font-size: 1.15rem; color: var(--text-dim); max-width: 600px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.service-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
  padding: 36px; transition: border-color 0.3s, transform 0.3s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.service-card.featured {
  grid-column: 1 / -1; background: var(--bg3); border-color: var(--accent);
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.service-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.service-number { font-family: 'Newsreader', serif; font-size: 3rem; font-weight: 500; color: var(--accent); opacity: 0.3; line-height: 1; margin-bottom: 16px; }
.service-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-bright); margin-bottom: 12px; }
.service-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; }
.service-card .best-for { margin-top: 14px; font-size: 0.85rem; color: var(--text-dim); font-style: italic; }
.service-price {
  display: inline-block; margin-top: 16px; padding: 6px 16px;
  background: var(--accent-glow); border: 1px solid rgba(212,145,92,0.25);
  border-radius: 6px; font-weight: 700; color: var(--accent-bright); font-size: 0.9rem;
  align-self: flex-start;
}
.service-card .card-cta { margin-top: 20px; color: var(--accent); font-weight: 700; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.service-card .card-cta:hover { color: var(--accent-bright); }

/* STORY */
.story { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.story-content { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
.story-left h2 { font-size: 2rem; font-weight: 800; letter-spacing: -1px; color: var(--text-bright); margin-bottom: 8px; }
.story-left .years { font-family: 'Newsreader', serif; font-size: 4rem; font-weight: 500; color: var(--accent); line-height: 1; margin-bottom: 16px; }
.story-left .years span { font-size: 1.2rem; color: var(--text-dim); display: block; font-family: 'Archivo', sans-serif; font-weight: 500; margin-top: 4px; }
.story-right p { font-family: 'Newsreader', serif; font-size: 1.15rem; line-height: 1.8; color: var(--text); margin-bottom: 20px; }
.story-right p:last-child { margin-bottom: 0; }
.story-right strong { color: var(--accent-bright); }

/* PACKAGES & CARE TIERS (shared card style) */
.packages-header { text-align: center; margin-bottom: 60px; }
.packages-header h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; color: var(--text-bright); margin-bottom: 12px; }
.packages-header p { font-family: 'Newsreader', serif; font-size: 1.15rem; color: var(--text-dim); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
  padding: 36px; display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.3s;
}
.package:hover { transform: translateY(-3px); }
.package.popular { border-color: var(--accent); position: relative; }
.package.popular::before {
  content: 'MOST POPULAR'; position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: var(--bg); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 1.5px; padding: 4px 12px; border-radius: 4px;
}
.package h3 { font-size: 1.2rem; font-weight: 800; color: var(--text-bright); margin-bottom: 8px; }
.package .price { font-size: 2.5rem; font-weight: 900; color: var(--accent); margin-bottom: 8px; }
.package .price-note { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 24px; }
.package .best-for { font-size: 0.9rem; color: var(--text); margin-bottom: 16px; line-height: 1.5; }
.package ul { list-style: none; flex: 1; margin-bottom: 24px; }
.package li {
  padding: 8px 0; border-bottom: 1px solid rgba(74,66,56,0.5); font-size: 0.9rem;
  color: var(--text); display: flex; align-items: flex-start; gap: 10px;
}
.package li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.package li:last-child { border-bottom: none; }
.package li.exclude { color: var(--text-dim); }
.package li.exclude::before { content: '−'; color: var(--text-dim); }
.package .btn { width: 100%; justify-content: center; }

/* WORK / PORTFOLIO */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.work-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.3s, transform 0.3s; text-decoration: none; color: var(--text); position: relative; overflow: hidden;
}
.work-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.work-card .work-thumb {
  aspect-ratio: 16/10; background: var(--bg3); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Newsreader', serif; font-size: 2rem; color: var(--accent); font-weight: 500;
  border: 1px solid var(--border);
}
.work-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--text-bright); }
.work-card .tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--green); }
.work-card.private .tag { color: var(--text-dim); }
.work-card.private .tag::before { content: '🔒'; }
.work-card .tag.live::before { content: '●'; color: var(--green); }
.work-card p { font-size: 0.92rem; color: var(--text-dim); line-height: 1.6; }
.work-card .work-cta { margin-top: auto; color: var(--accent); font-weight: 700; font-size: 0.9rem; }
.work-card.private .work-cta { color: var(--text-dim); }

/* HOW IT WORKS */
.how { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-header { text-align: center; margin-bottom: 60px; }
.how-header h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; color: var(--text-bright); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.how-steps::before { content: ''; position: absolute; top: 36px; left: 15%; right: 15%; height: 2px; background: var(--border); }
.how-step { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%; background: var(--bg);
  border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.5rem; font-weight: 900; color: var(--accent);
  position: relative; z-index: 1;
}
.how-step h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-bright); margin-bottom: 8px; }
.how-step p { font-size: 0.9rem; color: var(--text-dim); max-width: 260px; margin: 0 auto; }

/* CTA / CONTACT FORM */
.cta-section { text-align: center; position: relative; }
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-size: 2.5rem; font-weight: 900; letter-spacing: -1px; color: var(--text-bright); margin-bottom: 16px; position: relative; }
.cta-section .sub { font-family: 'Newsreader', serif; font-size: 1.2rem; color: var(--text-dim); margin-bottom: 36px; position: relative; }
.contact-form { max-width: 520px; margin: 0 auto; text-align: left; position: relative; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dim);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-family: 'Archivo', sans-serif;
  font-size: 0.95rem; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a89f91' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group select option { background: var(--bg2); color: var(--text); }
.form-submit { width: 100%; margin-top: 8px; }
.form-status {
  margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 0.9rem;
  display: none; text-align: center;
}
.form-status.success { display: block; background: var(--green-dim); color: var(--green); border: 1px solid rgba(125,184,122,0.3); }
.form-status.error { display: block; background: rgba(199,95,74,0.1); color: var(--red); border: 1px solid rgba(199,95,74,0.3); }
.cta-note { margin-top: 20px; font-size: 0.85rem; color: var(--text-dim); position: relative; }

/* DETAIL PAGES (service detail + care plan detail) */
.detail-section { padding: 70px 0; }
.detail-section.alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.detail-section h2 { font-size: 1.8rem; font-weight: 800; color: var(--text-bright); margin-bottom: 20px; letter-spacing: -0.5px; }
.detail-section h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-bright); margin-bottom: 12px; }
.detail-section p { color: var(--text); line-height: 1.75; margin-bottom: 16px; max-width: 760px; }
.detail-section .lead { font-family: 'Newsreader', serif; font-size: 1.2rem; color: var(--text-dim); }
.detail-section ul.bullets { list-style: none; padding-left: 0; margin: 16px 0 24px; max-width: 760px; }
.detail-section ul.bullets li { padding: 8px 0 8px 28px; position: relative; color: var(--text); line-height: 1.6; }
.detail-section ul.bullets li::before {
  content: '✓'; position: absolute; left: 0; top: 8px; color: var(--green); font-weight: 800;
}
.detail-section ul.bullets.x li::before { content: '×'; color: var(--red); }
.detail-section .inline-price {
  display: inline-block; margin: 4px 0 16px; padding: 8px 18px;
  background: var(--accent-glow); border: 1px solid rgba(212,145,92,0.3);
  border-radius: 6px; font-weight: 700; color: var(--accent-bright);
}
.detail-section .callout {
  background: var(--bg3); border-left: 3px solid var(--accent); padding: 18px 22px;
  border-radius: 6px; margin: 24px 0; max-width: 760px;
}
.detail-section .callout p { margin: 0; font-size: 0.95rem; }

/* PRICE TABLE (pricing page) */
.price-table { width: 100%; border-collapse: collapse; margin: 20px 0 32px; }
.price-table th, .price-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.price-table th { color: var(--text-dim); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.price-table td { color: var(--text); font-size: 0.95rem; }
.price-table td:last-child { font-weight: 700; color: var(--accent-bright); text-align: right; white-space: nowrap; }

/* FAQ (uses native details/summary) */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 10px;
  padding: 0; margin-bottom: 12px; transition: border-color 0.2s;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  padding: 18px 22px; cursor: pointer; font-weight: 700; color: var(--text-bright);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--accent); font-size: 1.4rem; font-weight: 400; transition: transform 0.2s; }
.faq details[open] summary::after { content: '−'; }
.faq details > p { padding: 0 22px 18px; color: var(--text-dim); line-height: 1.7; margin: 0; }

/* PASS-THROUGH / DISCLAIMER NOTE */
.pass-through-note {
  max-width: 900px; margin: 32px auto 0; padding: 18px 22px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.85rem; line-height: 1.65; color: var(--text-dim);
}
.pass-through-note strong { color: var(--text); }

/* FOOTER */
footer { padding: 50px 0 40px; border-top: 1px solid var(--border); text-align: center; background: var(--bg2); }
footer p { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 8px; }
footer .logo-foot { font-weight: 800; color: var(--text); margin-bottom: 8px; font-size: 1rem; }
footer .logo-foot span { color: var(--accent); }
footer .footer-nap { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 6px; }
footer .footer-contact { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 14px; }
footer .footer-contact a { color: var(--text-dim); text-decoration: underline; text-decoration-color: var(--border); text-underline-offset: 3px; transition: color 0.2s; }
footer .footer-contact a:hover { color: var(--accent); }
footer .footer-links {
  list-style: none; display: flex; justify-content: center; gap: 18px;
  margin: 10px 0 12px; flex-wrap: wrap;
}
footer .footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
footer .footer-links a:hover { color: var(--accent); }
footer .footer-legal-links {
  list-style: none; display: flex; justify-content: center; gap: 14px;
  margin: 6px 0 14px; flex-wrap: wrap;
}
footer .footer-legal-links a { color: var(--text-dim); text-decoration: none; font-size: 0.78rem; opacity: 0.8; transition: color 0.2s, opacity 0.2s; }
footer .footer-legal-links a:hover { color: var(--accent); opacity: 1; }
footer .footer-note { font-size: 0.78rem; color: var(--text-dim); }
footer .footer-disclaimer { font-size: 0.72rem; color: var(--text-dim); max-width: 720px; margin: 12px auto 0; line-height: 1.6; }

/* ATTORNEY-REVIEW BANNER (for skeleton legal pages) */
.attorney-banner {
  background: rgba(212,145,92,0.1); border: 1px solid rgba(212,145,92,0.3);
  border-radius: 8px; padding: 14px 18px; margin: 0 auto 32px; max-width: 760px;
  font-size: 0.88rem; color: var(--accent-bright); line-height: 1.5;
}
.attorney-banner strong { color: var(--text-bright); }

/* MOBILE */
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links {
    display: none; position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(26,23,20,0.98); flex-direction: column; padding: 24px; gap: 16px;
    border-bottom: 1px solid var(--border); align-items: stretch;
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 130px 0 80px; }
  .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
  .hero-sub { font-size: 1.1rem; }
  .page-hero { padding: 110px 0 40px; }
  .service-row { grid-template-columns: 1fr; }
  .service-card.featured { grid-template-columns: 1fr; }
  .story-content { grid-template-columns: 1fr; gap: 30px; }
  .packages-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 30px; }
  .how-steps::before { display: none; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .price-table { font-size: 0.85rem; }
  .price-table th, .price-table td { padding: 10px 8px; }
}

/* SCROLL REVEAL — IntersectionObserver targets .reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* ANIMATIONS (hero entry on page load) */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { animation: fadeUp 0.6s ease both; }
.hero h1 { animation: fadeUp 0.6s ease 0.1s both; }
.hero-sub { animation: fadeUp 0.6s ease 0.2s both; }
.hero-buttons { animation: fadeUp 0.6s ease 0.3s both; }

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
}
