:root {
  --bg: #f8faf7;
  --surface: #ffffff;
  --surface-alt: #f0f4ef;
  --accent: #2d6a4f;
  --accent-light: #40916c;
  --accent-soft: rgba(45, 106, 79, 0.08);
  --accent-glow: rgba(45, 106, 79, 0.15);
  --text: #1b2832;
  --muted: #5a6b75;
  --border: rgba(27, 40, 50, 0.08);
  --shadow: 0 4px 24px rgba(27, 40, 50, 0.06);
  --shadow-lg: 0 20px 60px rgba(27, 40, 50, 0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--muted); }
.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── Layout ── */
.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 80px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header p { font-size: 1.05rem; }

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-nav.scrolled { box-shadow: var(--shadow); background: rgba(255,255,255,0.95); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}
.nav-brand img { width: 64px; height: 64px; border-radius: 12px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: var(--accent-soft);
}
.nav-cta {
  padding: 10px 22px !important;
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-light) !important; color: #fff !important; }

/* ── Products dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.92rem;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--accent);
  background: var(--accent-soft);
}
.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform var(--transition);
}
.nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  margin: 0;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--text) !important;
  font-weight: 500;
  font-size: 0.92rem;
  background: transparent !important;
  transition: all var(--transition);
}
.nav-dropdown-link:hover {
  background: var(--accent-soft) !important;
  color: var(--accent) !important;
}
.nav-dropdown-icon { font-size: 1.2rem; line-height: 1; }

/* ── Mobile drawer navigation ── */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27, 40, 50, 0.45);
  z-index: 1100;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-backdrop.open { display: block; opacity: 1; }

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: var(--surface);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(27, 40, 50, 0.12);
  flex-direction: column;
}
.nav-drawer.open {
  display: flex;
  transform: translateX(0);
}
.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  min-height: var(--nav-h);
}
.nav-drawer-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}
.nav-drawer-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-link {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--text) !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition);
}
.drawer-link:hover,
.drawer-link.active {
  background: var(--accent-soft);
  color: var(--accent) !important;
}
.drawer-group { margin: 4px 0; }
.drawer-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
}
.drawer-submenu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 4px 8px;
}
.drawer-submenu.open { display: flex; }
.drawer-sublink {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--text) !important;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background var(--transition);
}
.drawer-sublink:hover {
  background: var(--surface-alt);
  color: var(--accent) !important;
}
.drawer-sublink-icon { font-size: 1.25rem; }
.drawer-cta {
  display: block;
  margin-top: 12px;
  padding: 16px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.drawer-cta:hover { background: var(--accent-light); color: #fff !important; }

body.nav-open { overflow: hidden; }

.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: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-light); color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-soft); color: var(--accent); transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--accent);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--accent); }

/* ── Hero ── */
.hero {
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content .subtitle {
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-badge strong { display: block; font-size: 1.4rem; color: var(--accent); }
.hero-badge span { font-size: 0.85rem; color: var(--muted); }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
.stat-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-item span { font-size: 0.85rem; color: var(--muted); }

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-glow);
}
.card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 8px; color: var(--text); }
.card-body p { font-size: 0.92rem; margin-bottom: 16px; }
.card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link::after { content: "→"; transition: transform var(--transition); }
.card:hover .card-link::after { transform: translateX(4px); }

/* ── Category cards ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  color: var(--text);
}
.category-icon { font-size: 2.5rem; margin-bottom: 16px; }
.category-card h3 { margin-bottom: 8px; }
.category-card p { font-size: 0.88rem; margin: 0; }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--accent-glow); box-shadow: var(--shadow); }
.feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  border-radius: 12px;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent), #1b4332);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 28px; }
.cta-banner .btn-white { position: relative; }

/* ── Product Detail ── */
.product-hero {
  padding: calc(var(--nav-h) + 40px) 0 60px;
  background: var(--surface-alt);
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.product-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.product-meta { list-style: none; padding: 0; margin: 24px 0; }
.product-meta li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}
.product-meta li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text); font-weight: 500; }

/* ── Blog ── */
.blog-card .card-img { aspect-ratio: 16/9; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
.article-content h2 { margin-top: 40px; margin-bottom: 16px; }
.article-content h3 { margin-top: 32px; }
.article-content ul, .article-content ol { padding-left: 24px; color: var(--muted); }
.article-content li { margin-bottom: 8px; }
.article-content p { font-size: 1.05rem; line-height: 1.8; }
.article-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/9;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-card {
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.contact-info-card:hover { border-color: var(--accent-glow); box-shadow: var(--shadow); }
.contact-info-card h3 { margin-bottom: 8px; }
.contact-info-card a { font-weight: 600; font-size: 1.05rem; }
.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── Page Header ── */
.page-header {
  padding: calc(var(--nav-h) + 48px) 0 48px;
  background: var(--surface-alt);
  text-align: center;
}
.page-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Category writeup ── */
.category-writeup {
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.category-writeup h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.2rem;
}
.category-writeup p,
.category-writeup li {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
}
.category-writeup ul {
  padding-left: 20px;
  margin: 12px 0 0;
}
.category-writeup li { margin-bottom: 10px; }
.category-writeup li strong { color: var(--text); }

/* ── Footer ── */
.site-footer {
  background: #1b2832;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 16px; max-width: 300px; }
.footer-brand img { width: 72px; height: 72px; border-radius: 14px; object-fit: contain; }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col a:hover { color: #95d5b2; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}
.footer-credits {
  width: 100%;
  text-align: center;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}
.footer-credits a {
  color: rgba(149, 213, 178, 0.9);
  font-weight: 600;
  text-decoration: none;
}
.footer-credits a:hover { color: #95d5b2; }
.social-links { display: flex; gap: 12px; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: all var(--transition);
}
.social-link:hover { background: var(--accent); color: #fff; }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-anim { animation: float 4s ease-in-out infinite; }

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* ── Filter tabs ── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ── Utilities ── */
.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;
}
.text-center { text-align: center; }
.bg-alt { background: var(--surface-alt); }
.mt-0 { margin-top: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid,
  .product-hero-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { order: -1; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links--desktop { display: none !important; }
  .nav-toggle { display: block; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

@media (min-width: 769px) {
  .nav-backdrop,
  .nav-drawer { display: none !important; }
  .nav-toggle { display: none; }
}
