@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;0,6..72,700;1,6..72,400&display=swap');

:root {
  /* Dark Mode Colors */
  --bg-primary: #0b0f14;
  --bg-secondary: #131a22;
  --bg-tertiary: #1b2430;
  --header-bg: rgba(17, 23, 30, 0.9);
  --text-primary: #f4f7fa;
  --text-secondary: #d6dee6;
  --text-muted: #8fa0b0;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.05);

  /* Brand Accent — green, land/nature theme */
  --green: #2e7d32;
  --green-dark: #1e5e22;
  --green-light: #4caf50;
  --green-glow: rgba(46, 125, 50, 0.35);
  --amber: #f57f17;
  --amber-light: #ffb300;

  /* Surfaces */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.09);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;

  /* Layout */
  --header-height: 72px;
  --content-padding: 2.5rem;
  --border-radius: 14px;
  --transition: all 0.3s cubic-bezier(0.25, 0.6, 0.3, 1);
}

/* Alternate theme palettes — toggled via [data-theme] on <html> */
:root[data-theme="gold"] {
  --green: #b8860b;
  --green-dark: #8a6508;
  --green-light: #e0b23a;
  --green-glow: rgba(184, 134, 11, 0.35);
}
:root[data-theme="purple"] {
  --green: #6a1b9a;
  --green-dark: #4a1170;
  --green-light: #9c4dcc;
  --green-glow: rgba(106, 27, 154, 0.35);
}
:root[data-theme="cerulean"] {
  --green: #007ba7;
  --green-dark: #005f7a;
  --green-light: #2da8d8;
  --green-glow: rgba(0, 123, 167, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 80% -10%, var(--green-glow), transparent 60%),
    radial-gradient(ellipse 60% 45% at 10% 110%, rgba(76, 175, 80, 0.08), transparent 60%);
  pointer-events: none;
}

a {
  color: var(--green-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
a:hover {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 3px;
}

/* ── Site Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.site-header-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}
.site-logo:hover { text-decoration: none; color: var(--text-primary); }
.site-logo-img { height: 56px; width: auto; display: block; }
.footer-logo-img { height: 88px; width: auto; display: block; margin: 0 auto 0.5rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.site-nav a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}
.site-nav a:hover { color: var(--green-light); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 0.5rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu-toggle:hover { background: var(--bg-tertiary); color: var(--green-light); }

/* Main content */
.main-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--content-padding) 1.5rem 0;
}

/* Buttons */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 20px var(--green-glow);
  font-family: var(--font-body);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px var(--green-glow);
  text-decoration: none;
  color: #fff;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  text-decoration: none;
  color: #fff;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.25); text-decoration: none; }

/* Hero */
.hero {
  background:
    linear-gradient(160deg, rgba(0,0,0,0.72) 0%, rgba(11,15,20,0.85) 100%),
    url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1600&q=80') center/cover no-repeat;
  border-radius: var(--border-radius);
  padding: 5rem 3rem;
  margin-bottom: 3rem;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  background: radial-gradient(ellipse 60% 50% at 50% 100%, var(--green-glow), transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(46,125,50,0.2);
  border: 1px solid rgba(76,175,80,0.4);
  color: var(--green-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  position: relative;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  background: linear-gradient(120deg, #ffffff 40%, var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--green-light);
  margin-bottom: 1.25rem;
  position: relative;
}
.hero p.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2rem;
  position: relative;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.trust-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Section titles */
.section-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  background: linear-gradient(120deg, var(--text-primary) 40%, var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.section { margin-bottom: 3.5rem; scroll-margin-top: calc(var(--header-height) + 1rem); }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(76,175,80,0.35);
  box-shadow: 0 0 24px rgba(46,125,50,0.15);
  transform: translateY(-3px);
}
.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-card h3 { font-weight: 600; font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; margin: 0; }

/* Why us grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.why-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.why-item h4 { font-weight: 600; font-size: 1rem; margin-bottom: 0.5rem; }
.why-item p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ── Quote Request Form ── */
.quote-block {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.quote-header {
  background: linear-gradient(135deg, rgba(46,125,50,0.25), rgba(76,175,80,0.1));
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 2rem 1.5rem;
}
.quote-header h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.quote-header p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

.quote-form { padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(76,175,80,0.5);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.15);
}
.form-group select option { background: var(--bg-tertiary); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input[type="file"] {
  padding: 0.55rem 0.6rem;
  color: var(--text-muted);
}
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.35rem; }
.form-actions { margin-top: 0.5rem; }
.form-actions .btn-green { width: 100%; justify-content: center; }

.form-success, .form-error {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.form-success.open, .form-error.open { display: block; }
.form-success-icon {
  width: 60px; height: 60px;
  background: rgba(46,125,50,0.2);
  border: 2px solid var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 1.1rem;
}
.form-success h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.5rem; }
.form-success p, .form-error p { color: var(--text-muted); font-size: 0.95rem; }
.honeypot-field { position: absolute; left: -9999px; }

/* Feature image band */
.feature-band {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(11,15,20,0.1) 0%, rgba(11,15,20,0.92) 90%),
    url('images/stumps.jpg') center/cover no-repeat;
  border: 1px solid var(--border-color);
  padding: 2.5rem;
}
.feature-band-content { max-width: 560px; }
.feature-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.feature-band p { color: rgba(255,255,255,0.82); font-size: 1rem; margin: 0; }

/* Before & after grid — two large images side by side */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 700px) {
  .before-after-grid { grid-template-columns: 1fr; }
}
.before-after-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 3/4;
}
.before-after-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.before-after-label {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(11,15,20,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
}

/* Photo + text split */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 760px) {
  .split-block { grid-template-columns: 1fr; }
}
.split-photo {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.split-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.split-text p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.75rem; }
.split-note {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--amber-light);
  background: rgba(245,127,23,0.08);
  border: 1px solid rgba(255,179,0,0.2);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
}

/* Partners */
.partner-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 1.75rem;
}
.partner-card h3 { font-size: 1.15rem; color: var(--text-primary); margin-bottom: 0.35rem; }
.partner-card .partner-role { color: var(--green-light); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; }
.partner-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0;
}
.partner-tag {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.partner-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  font-size: 0.88rem;
}

/* Contact strip */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.contact-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}
.contact-item h4 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.3rem; font-weight: 500; }
.contact-item p { font-size: 0.97rem; color: var(--text-primary); font-weight: 500; margin: 0; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-color);
  margin-top: 3rem;
  padding: 2.5rem 1.5rem;
}
.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-links { display: flex; gap: 1.5rem; font-size: 0.88rem; }
.footer-copy { color: var(--text-muted); font-size: 0.82rem; width: 100%; text-align: center; margin-top: 1rem; }

.theme-picker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.theme-picker-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.theme-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: var(--swatch);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.theme-swatch:hover { transform: scale(1.12); }
.theme-swatch.active {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 2px var(--bg-primary), 0 0 0 4px var(--swatch);
}

/* Focus / scrollbar / selection */
*:focus-visible { outline: 2px solid var(--green-light); outline-offset: 2px; border-radius: 4px; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-tertiary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }
::selection { background: var(--green-glow); color: var(--text-primary); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Responsive */
@media (min-width: 860px) {
  .header-phone { display: flex; }
}
@media (max-width: 860px) {
  .site-nav { display: none; }
  .mobile-menu-toggle { display: flex; align-items: center; justify-content: center; }
}
@media (max-width: 700px) {
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 3.5rem 1.5rem; }
  .main-content { padding: 1.5rem 1.25rem 0; }
}
@media (max-width: 480px) {
  .site-logo { font-size: 1.1rem; }
  .header-cta { gap: 0.5rem; }
  .header-cta .btn-green { display: none; }
}

/* Chat widget */
.chat-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1500;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--green-glow);
  transition: var(--transition);
}
.chat-toggle:hover { transform: translateY(-2px); }

.chat-panel {
  display: none;
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 1500;
  width: 340px;
  max-width: calc(100vw - 2rem);
  height: 440px;
  max-height: calc(100vh - 8rem);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.chat-panel.open { display: flex; }

.chat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(135deg, rgba(46,125,50,0.2), rgba(76,175,80,0.08));
}
.chat-close {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--font-body);
}
.chat-close:hover { color: var(--text-primary); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.chat-msg {
  font-size: 0.88rem;
  line-height: 1.5;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  max-width: 88%;
}
.chat-msg-bot {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  align-self: flex-start;
}
.chat-msg-user {
  background: rgba(46,125,50,0.22);
  border: 1px solid rgba(76,175,80,0.35);
  color: var(--text-primary);
  align-self: flex-end;
}

.chat-input-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem;
  border-top: 1px solid var(--border-color);
}
.chat-input-row input {
  flex: 1;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
}
.chat-input-row input:focus { border-color: rgba(76,175,80,0.5); }
.chat-input-row .btn-green { padding: 0.55rem 1.1rem; font-size: 0.85rem; box-shadow: none; }
.chat-input-row input:disabled { opacity: 0.5; }

@media (max-width: 480px) {
  .chat-toggle { bottom: 1rem; right: 1rem; }
  .chat-panel { right: 1rem; bottom: 4.5rem; }
}

/* Mobile nav dropdown */
.mobile-nav-panel {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
}
.mobile-nav-panel.open { display: block; }
.mobile-nav-panel a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}
.mobile-nav-panel a:last-child { border-bottom: none; }
