/* ─── LV TRAIL SHARED STYLES v14 ───────────────────────────── */
:root {
  --forest:       #1E3A2F;
  --forest-mid:   #2D5A44;
  --forest-light: #EAF2EC;
  --stone:        #C4A882;
  --stone-light:  #F5EFE6;
  --ink:          #1A1A18;
  --ink-soft:     #4A4A46;
  --ink-muted:    #737373;
  --cream:        #FAFAF7;
  --white:        #FFFFFF;
  --border:       #E2DDD6;
  --font-display: 'Lora', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       6px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);
  --max-w:        720px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--ink); background: var(--cream); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-up   { animation: fadeUp 0.8s ease forwards; }
.fade-up-2 { animation: fadeUp 0.8s 0.12s ease forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.8s 0.24s ease forwards; opacity: 0; }
.fade-up-4 { animation: fadeUp 0.8s 0.36s ease forwards; opacity: 0; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 200; background: rgba(250,250,247,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); animation: fadeIn 0.4s ease; }
.nav-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; height: 60px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark { width: 32px; height: 32px; background: var(--forest); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.nav-logo-mark svg { width: 18px; height: 18px; stroke: var(--stone); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--forest); letter-spacing: -0.02em; }
.nav-logo-text span { color: var(--stone); font-style: italic; }
.nav-links { display: none; gap: 0; list-style: none; justify-content: center; align-items: center; }
@media (min-width: 640px) { .nav-links { display: flex; } }
.nav-links a { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); transition: color 0.2s; padding: 0 12px; white-space: nowrap; }
.nav-links li + li a { border-left: 1px solid var(--border); }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-cta { background: var(--forest); color: var(--white); font-size: 0.82rem; font-weight: 600; padding: 9px 18px; border-radius: var(--radius); transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.nav-cta:hover { background: var(--forest-mid); transform: translateY(-1px); }
.nav-hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
@media (min-width: 640px) { .nav-hamburger { display: none; } }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--forest); border-radius: 2px; transition: all 0.25s; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 300; flex-direction: column; padding: 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu-close { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--ink); margin-bottom: 32px; }
.mobile-menu a { font-size: 1.4rem; font-family: var(--font-display); font-weight: 700; color: var(--forest); padding: 16px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a.mobile-cta { margin-top: 24px; background: var(--forest); color: var(--white); text-align: center; padding: 18px; border-radius: var(--radius); border: none; }

/* BUTTONS */
.btn-primary { background: var(--stone); color: var(--forest); font-weight: 700; font-size: 0.95rem; padding: 15px 28px; border-radius: var(--radius); border: none; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s, background 0.2s; box-shadow: 0 4px 20px rgba(196,168,130,0.3); white-space: nowrap; display: inline-block; }
.btn-primary:hover { background: #d4b892; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,168,130,0.4); }
.btn-secondary { background: transparent; color: var(--forest); font-weight: 600; font-size: 0.9rem; padding: 13px 24px; border-radius: var(--radius); border: 2px solid var(--forest); cursor: pointer; transition: background 0.2s, color 0.2s; display: inline-block; }
.btn-secondary:hover { background: var(--forest); color: var(--white); }
.btn-ghost { color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 400; padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,0.2); transition: color 0.2s, border-color 0.2s; }
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* HERO */
.hero { background: var(--forest); position: relative; overflow: hidden; padding: 88px 24px 96px; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 15% 60%, rgba(196,168,130,0.15) 0%, transparent 55%), radial-gradient(ellipse at 85% 20%, rgba(45,90,68,0.6) 0%, transparent 50%); pointer-events: none; }
.hero::after { content: ''; position: absolute; top: 0; bottom: 0; right: -40px; width: 1px; background: linear-gradient(to bottom, transparent, rgba(196,168,130,0.3) 30%, rgba(196,168,130,0.3) 70%, transparent); pointer-events: none; }
.hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(196,168,130,0.15); border: 1px solid rgba(196,168,130,0.3); color: var(--stone); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; padding: 6px 14px; border-radius: 100px; margin-bottom: 28px; }
.hero-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #6BCB8B; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 3.4rem); font-weight: 700; color: var(--white); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--stone); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.65; font-weight: 300; max-width: 520px; margin-bottom: 40px; }
.hero-sub strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* PAGE HERO (interior pages) */
.page-hero { background: var(--forest); padding: 64px 24px 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 80%, rgba(196,168,130,0.12) 0%, transparent 55%); pointer-events: none; }
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero .section-label { color: var(--stone); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.9rem, 5vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1.1; letter-spacing: -0.025em; margin-top: 12px; margin-bottom: 16px; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.65; font-weight: 300; max-width: 520px; }

/* FOUND-ON STRIP */
.found-on { background: var(--stone-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 24px; }
.found-on-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.found-on-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.found-on-items { display: flex; flex-wrap: wrap; gap: 8px; }
.found-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 6px 14px; font-size: 0.78rem; font-weight: 500; color: var(--ink-soft); }
.found-pill-dot { width: 6px; height: 6px; border-radius: 50%; }

/* FOOTER */
.footer { background: var(--ink); padding: 48px 24px; }
.footer-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 600px) { .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-logo-mark { width: 28px; height: 28px; background: var(--forest); border-radius: 5px; display: flex; align-items: center; justify-content: center; }
.footer-logo-mark svg { width: 15px; height: 15px; stroke: var(--stone); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-logo-text { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--white); }
.footer-logo-text span { color: var(--stone); font-style: italic; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-copy a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-copy a:hover { color: var(--stone); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--stone); }
.footer-tagline { font-family: var(--font-display); font-size: 0.82rem; font-style: italic; color: rgba(255,255,255,0.25); margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }

/* BREADCRUMB */
.breadcrumb { background: var(--cream); border-bottom: 1px solid var(--border); padding: 10px 24px; }
.breadcrumb-inner { max-width: var(--max-w); margin: 0 auto; font-size: 0.78rem; color: var(--ink-muted); }
.breadcrumb-inner a { color: var(--forest); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner span { margin: 0 6px; }

/* CALL TO ACTION BAND */
.cta-band { background: var(--forest); padding: 72px 24px; }
.cta-band-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.cta-band p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { font-size: 1rem; padding: 17px 32px; }

/* PROSE (blog/about body) */
.prose { font-size: 1rem; color: var(--ink-soft); line-height: 1.8; }
.prose p { margin-bottom: 20px; }
.prose h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin: 40px 0 14px; line-height: 1.2; }
.prose h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin: 28px 0 10px; }
.prose ul, .prose ol { padding-left: 20px; margin-bottom: 20px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose blockquote { border-left: 3px solid var(--stone); padding: 4px 0 4px 20px; margin: 28px 0; color: var(--ink-soft); font-style: italic; }
.prose a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }

/* â”€â”€â”€ ACCESSIBILITY ADDITIONS (Phase 1 Step 3) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 8px;
  top: 8px;
  width: auto;
  height: auto;
  z-index: 9999;
  background: var(--forest);
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  outline: none;
}

/* Focus visible */
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Section label contrast fix (overrides earlier --stone color on light backgrounds; .page-hero .section-label keeps stone via higher specificity) */
.section-label {
  color: var(--ink-soft, #4A4A46);
}

/* Footer contrast fixes */
.footer-copy {
  color: rgba(255,255,255,0.6);
}
.footer-tagline {
  color: rgba(255,255,255,0.6);
}

/* Found-on label contrast fix */
.found-on-label {
  color: #5A5A5A;
}

/* SR-only utility (visually hidden text for screen readers) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* FAQ accordion indicator — toggles + / − via CSS based on details[open] */
details summary {
  list-style: none;
  cursor: pointer;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary::after {
  content: '+';
  float: right;
  font-size: 1.2em;
  font-weight: 300;
  color: var(--forest);
  transition: transform 0.2s ease;
}
details[open] summary::after {
  content: '−';
}