/* ============================================================
   AfriPure Salt — Design System
   Editorial B2B export brand. Warm earth + crystal contrast.
   ============================================================ */

:root {
  /* Color */
  --bg:        #FFFFFF;   /* pure white */
  --bg-soft:   #F4EFE3;   /* warm soft band */
  --bg-card:   #FFFFFF;   /* pure white */
  --bg-dark:   #1B1612;   /* espresso */
  --bg-clay:   #2E1A11;   /* deep clay */

  --ink:       #1B1612;   /* primary ink */
  --ink-soft:  #5A4F45;   /* secondary body */
  --ink-mute:  #8C8378;   /* tertiary, captions */
  --line:      #E8DFC9;   /* sand divider */
  --line-soft: #F0E7D2;

  --accent:    #B8392A;   /* brick red */
  --accent-deep:#7A1E15;
  --accent-soft:#F0C9C3;
  --mint:      #C1FBA4;   /* fresh mint accent */
  --mint-deep: #8FD46B;
  --salt:      #FFFFFF;   /* crystalline white */
  --gold:      #C4A24A;   /* brass accent for certifications */

  /* Type */
  --font-display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display-serif: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Scale */
  --container:  1320px;
  --gutter:     48px;
  --radius:     2px;
  --radius-lg:  6px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* Containers */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { max-width: 1480px; margin: 0 auto; padding: 0 var(--gutter); }

/* Section that uses mint feature background */
.section-mint { background: var(--mint); }
.section-mint .ph { background: rgba(255,255,255,0.45); }
.section-mint .ph::before { background-image: repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(27,22,18,0.06) 14px, rgba(27,22,18,0.06) 15px); }

/* ============= Type ============= */
.display, h1, h2, h3 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.025em; }
.display { font-size: clamp(56px, 7vw, 104px); line-height: 0.96; letter-spacing: -0.035em; }
h1 { font-size: clamp(48px, 5.5vw, 84px); line-height: 1.0; letter-spacing: -0.032em; margin: 0; }
h2 { font-size: clamp(36px, 4vw, 60px); line-height: 1.04; letter-spacing: -0.025em; margin: 0; }
h3 { font-size: clamp(22px, 1.8vw, 30px); line-height: 1.15; margin: 0; font-weight: 500; }
.italic { font-style: italic; }
h1 em, h2 em, h3 em, .display em { font-family: var(--font-display); font-style: italic; font-weight: 500; letter-spacing: -0.025em; color: var(--accent); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow .dot { display: inline-block; width: 8px; height: 8px; background: var(--mint); border: 1px solid var(--ink); border-radius: 50%; margin-right: 10px; vertical-align: middle; }
.lede { font-size: 19px; line-height: 1.55; color: var(--ink-soft); max-width: 56ch; }
.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }
.num { font-family: var(--font-display); font-feature-settings: "tnum"; }

/* ============= Buttons ============= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 160ms ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #FFFDF8; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-dark { background: var(--bg-dark); color: var(--salt); }
.btn-dark:hover { background: #000; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--salt); }
.btn-light { background: var(--salt); color: var(--ink); border-color: var(--line); }
.btn .arrow { width: 14px; height: 14px; }

/* ============= Top Nav ============= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 18px var(--gutter);
  max-width: 1480px; margin: 0 auto;
}
.nav-left { display: flex; align-items: center; gap: 28px; }
.nav-right { display: flex; align-items: center; gap: 20px; justify-content: flex-end; }
.nav a.nav-link {
  font-size: 14px; color: var(--ink); padding: 6px 0;
  position: relative;
}
.nav a.nav-link:hover { color: var(--accent); }
.nav a.nav-link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
}
.nav-locale { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-soft); }

/* Logo */
.logo {
  font-family: var(--font-display-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
}
.logo-mark {
  width: 22px; height: 22px;
  background: var(--mint);
  border-radius: 50%;
  position: relative;
  border: 1px solid rgba(27,22,18,0.06);
}
.logo-mark::before {
  content:''; position: absolute; inset: 4px;
  background: var(--bg);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

/* ============= Sections ============= */
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
.section-dark { background: var(--bg-dark); color: var(--salt); }
.section-dark .lede, .section-dark .eyebrow { color: rgba(248,244,236,0.7); }
.section-soft { background: var(--bg-soft); }
.section-card { background: var(--bg-card); }

/* ============= Image placeholders ============= */
.ph {
  position: relative;
  background: #EFE8D6;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 14px,
    rgba(184, 57, 42, 0.07) 14px,
    rgba(184, 57, 42, 0.07) 15px
  );
}
.ph .ph-label {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(248, 244, 236, 0.92);
  padding: 6px 10px;
  border-radius: 2px;
  z-index: 2;
}
.ph.dark { background: #2a221c; }
.ph.dark::before {
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 14px,
    rgba(255,255,255,0.05) 14px,
    rgba(255,255,255,0.05) 15px
  );
}
.ph.dark .ph-label { background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.85); }

/* ============= Trust bar / stats ============= */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-cell {
  padding: 28px 32px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.trust-cell:last-child { border-right: 0; }
.trust-cell .num { font-size: 44px; line-height: 1; color: var(--ink); }
.trust-cell .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }

/* ============= Card patterns ============= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ============= Footer ============= */
.footer { background: var(--bg-dark); color: var(--salt); padding: 96px 0 48px; }
.footer a { color: rgba(248,244,236,0.7); transition: color 120ms; }
.footer a:hover { color: var(--accent-soft); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 64px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(248,244,236,0.5); font-weight: 400; margin: 0 0 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 80px; padding-top: 32px; border-top: 1px solid rgba(248,244,236,0.12); font-size: 12px; color: rgba(248,244,236,0.5); font-family: var(--font-mono); letter-spacing: 0.06em; }
.footer .logo { color: var(--salt); }
.footer .logo-mark::before { background: var(--bg-dark); }

/* ============= Utility ============= */
.divider { height: 1px; background: var(--line); }
.divider-dark { height: 1px; background: rgba(248,244,236,0.12); }
.feature-mint { background: var(--mint) !important; }
.feature-mint .pname, .feature-mint .pdesc, .feature-mint h1, .feature-mint h2, .feature-mint h3, .feature-mint p { color: var(--ink) !important; }

/* ============= Nav drawer (shared across pages) ============= */
.nav-menu-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 0;
  padding: 6px 2px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: color 160ms;
}
.nav-menu-toggle:hover { color: var(--accent); }
.nav-menu-icon { display: inline-flex; flex-direction: column; gap: 4px; width: 18px; align-items: flex-start; }
.nav-menu-icon span { display: block; height: 1.4px; background: currentColor; border-radius: 1px; transition: transform 220ms ease, opacity 160ms; }
.nav-menu-icon span:nth-child(1) { width: 18px; }
.nav-menu-icon span:nth-child(2) { width: 14px; }
.nav-menu-icon span:nth-child(3) { width: 16px; }
.nav-menu-toggle.open .nav-menu-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 18px; }
.nav-menu-toggle.open .nav-menu-icon span:nth-child(2) { opacity: 0; }
.nav-menu-toggle.open .nav-menu-icon span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); width: 18px; }
.nav-menu-toggle.open { color: var(--accent); }

.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(27,22,18,0.32);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 260ms ease;
  z-index: 60;
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

.nav-drawer {
  position: fixed; top: 0; bottom: 0;
  width: 400px; max-width: 88vw;
  background: var(--bg);
  z-index: 70;
  overflow-y: auto;
  transition: transform 380ms cubic-bezier(0.7, 0, 0.2, 1);
}
.nav-drawer[data-side="left"]  { left: 0; right: auto; transform: translateX(-100%); box-shadow: 24px 0 60px rgba(27,22,18,0.10); border-right: 1px solid var(--line); }
.nav-drawer[data-side="right"] { right: 0; left: auto;  transform: translateX(100%);  box-shadow: -24px 0 60px rgba(27,22,18,0.10); border-left: 1px solid var(--line); }
.nav-drawer.open { transform: translateX(0); }
.nav-drawer[data-theme="dark"] { background: var(--bg-dark); color: var(--salt); border-color: rgba(248,244,236,0.12); }
.nav-drawer[data-theme="dark"] .logo { color: var(--salt); }
.nav-drawer[data-theme="dark"] .logo-mark::before { background: var(--bg-dark); }
.nav-drawer[data-theme="dark"] .ndr-list a { color: var(--salt); border-color: rgba(248,244,236,0.12); }
.nav-drawer[data-theme="dark"] .ndr-list .num { color: rgba(248,244,236,0.45); }
.nav-drawer[data-theme="dark"] .ndr-close { color: var(--salt); border-color: rgba(248,244,236,0.25); }
.nav-drawer[data-theme="dark"] .ndr-eyebrow { color: rgba(248,244,236,0.5); }
.nav-drawer[data-theme="dark"] .ndr-foot { border-top-color: rgba(248,244,236,0.12); }
.nav-drawer[data-theme="dark"] .ndr-contact-meta { color: rgba(248,244,236,0.6); }

.nav-drawer-inner { padding: 28px 36px 36px; display: flex; flex-direction: column; min-height: 100%; gap: 30px; }
.ndr-top { display: flex; justify-content: space-between; align-items: center; }
.ndr-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line);
  color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 120ms, transform 200ms;
}
.ndr-close:hover { background: rgba(27,22,18,0.04); transform: rotate(90deg); }
.ndr-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.ndr-eyebrow .dot { display: inline-block; width: 8px; height: 8px; background: var(--mint); border: 1px solid var(--ink); border-radius: 50%; margin-right: 10px; vertical-align: middle; }
.ndr-list { display: flex; flex-direction: column; margin-top: -8px; }
.ndr-list a { display: grid; grid-template-columns: 32px 1fr 24px; gap: 14px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--line); color: var(--ink); transition: padding 240ms ease, color 160ms; }
.ndr-list a:hover { padding-left: 14px; color: var(--accent); }
.ndr-list a:hover .arrow, .ndr-list a:hover .num { color: var(--accent); }
.ndr-list .num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-mute); transition: color 160ms; }
.ndr-list .name { font-family: var(--font-display); font-size: 30px; line-height: 1; letter-spacing: -0.025em; font-weight: 500; }
.ndr-list .arrow { font-family: var(--font-mono); font-size: 14px; color: var(--ink-mute); transition: transform 200ms ease, color 160ms; }
.ndr-list a:hover .arrow { transform: translateX(4px); }
.ndr-foot { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); }
.ndr-contact { font-family: var(--font-display); font-size: 22px; line-height: 1.1; font-weight: 500; }
.ndr-contact-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-mute); margin-top: 4px; }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--bg-card);
}
.tag-accent { background: var(--accent); color: #FFFDF8; border-color: var(--accent); }

/* ============= Marquee row ============= */
.marquee {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--mint);
  padding: 26px 0;
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: -0.01em;
  overflow: hidden;
  white-space: nowrap;
  color: var(--ink);
}
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee .item { display: inline-flex; align-items: center; gap: 28px; padding-right: 28px; }
.marquee .item::after { content: '✺'; color: var(--accent); font-size: 22px; }

/* ============= Forms ============= */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  outline: none;
  transition: border 120ms;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { min-height: 120px; resize: vertical; }

/* (responsive rules are at the bottom of this file) */

/* ============= Scroll-to-top button ============= */
#scrollTopBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: none;
  background: var(--bg-dark);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms, transform 260ms;
  box-shadow: 0 4px 16px rgba(27,22,18,0.22);
}
#scrollTopBtn.visible {
  opacity: 1;
  transform: translateY(0);
}
#scrollTopBtn:hover { background: #2a201a; }
#scrollTopBtn .progress-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  border-radius: 50%;
}
#scrollTopBtn .ring-track {
  fill: none;
  stroke: rgba(248,244,236,0.15);
  stroke-width: 2.5;
}
#scrollTopBtn .ring-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 60ms linear;
}
#scrollTopBtn .arrow-up {
  position: relative;
  z-index: 1;
  color: var(--salt);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============= Responsive — 960 px ============= */
@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .nav-inner { grid-template-columns: 1fr auto 1fr; }
  .nav-left .nav-link, .nav-locale { display: none; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 700px) {
  .nav-menu-text { display: none; }
}

/* ============= Responsive — 768 px ============= */
@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .section { padding: 64px 0; }
  .marquee { font-size: 26px; }
  .btn { padding: 12px 22px; font-size: 13px; }
  .lede { font-size: clamp(14px, 3.8vw, 17px); }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-copy { font-size: 12px; }
  /* Override any inline section padding on .section elements */
  .section[style] { padding-top: 64px !important; padding-bottom: 64px !important; }
}

/* ============= Inline grid overrides (attribute selectors + !important) ============= */
/* All pages use inline style="grid-template-columns: 5fr 7fr" for section splits.
   CSS media queries cannot override inline styles without !important. */
@media (max-width: 900px) {
  [style*="5fr 7fr"],
  [style*="7fr 5fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* ============= Responsive — 600 px ============= */
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-links { flex-wrap: wrap; gap: 10px 16px; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-cell + .trust-cell { border-left: none; border-top: 1px solid var(--line); }
  /* CTA-wide inline grids */
  [style*="1.5fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  /* Align-items reset when stacked */
  [style*="5fr 7fr"],
  [style*="7fr 5fr"],
  [style*="1.5fr 1fr"] {
    align-items: start !important;
  }
}

/* ============= Responsive — 480 px ============= */
@media (max-width: 480px) {
  :root { --gutter: 16px; }
  .section { padding: 48px 0; }
  .section[style] { padding-top: 48px !important; padding-bottom: 48px !important; }

  /* Typography — reduce minimum clamp values for small phones */
  h1 { font-size: clamp(28px, 7.5vw, 38px); line-height: 1.08; }
  h2 { font-size: clamp(22px, 6vw, 30px); line-height: 1.1; }
  h3 { font-size: clamp(17px, 4.5vw, 22px); }
  .lede { font-size: 15px; line-height: 1.6; }

  /* Inline 2-col grids — collapse on very small screens */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* Trust bar 2x2 grid */
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-cell + .trust-cell { border-left: none; border-top: none; }
  .trust-cell:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-cell:nth-child(n+3) { border-top: 1px solid var(--line); }
  .trust-cell { padding: 18px 14px; }

  /* Placeholder image height floor on stacked layouts */
  .ph[style*="aspect-ratio"] { min-height: 200px; }
  .hero-image { min-height: 260px; }

  /* Dark section stat rows — already handled by page CSS, reinforce */
  .stat-row { grid-template-columns: 1fr !important; gap: 4px !important; padding: 18px 0 !important; }
  .stat-row .meta { display: none; }

  /* Footer */
  .footer { padding: 56px 0 36px; }
  .footer-col h4 { margin-bottom: 12px; }

  /* Marquee */
  .marquee { font-size: 20px; }

  /* Scroll-to-top button */
  #scrollTopBtn { bottom: 18px; right: 18px; }
}

/* ============= Nav bar responsive ============= */
@media (max-width: 600px) {
  /* Shrink the nav CTA button so it never overflows the right column */
  .nav-right .btn {
    padding: 8px 14px !important;
    font-size: 11px !important;
    gap: 5px !important;
    width: auto !important;
    white-space: nowrap;
  }
  /* Remove any hard-coded nav-inner height on small screens */
  .nav-inner { height: auto !important; min-height: 56px; }
}
@media (max-width: 400px) {
  /* On very small phones hide the arrow SVG in the nav CTA */
  .nav-right .btn .arrow { display: none; }
  .nav-right .btn { padding: 8px 10px !important; font-size: 10px !important; }
}

/* ============= Nav drawer — active page highlight ============= */
/* Active page name shows in brick-red accent; all others stay dark ink */
.ndr-list a .name { color: var(--ink); }
.ndr-list a.active .name { color: var(--accent) !important; }

/* ============= Nav drawer responsive ============= */
/* The drawer nav-link names are 30px — scale them down on phones */
@media (max-width: 600px) {
  .nav-drawer-inner { padding: 22px 28px 32px !important; }
  .ndr-list .name { font-size: 24px !important; }
  .ndr-list a { padding: 16px 0 !important; }
  .ndr-contact { font-size: 18px !important; }
}
@media (max-width: 400px) {
  .nav-drawer-inner { padding: 18px 20px 28px !important; }
  .ndr-list .name { font-size: 20px !important; }
  .ndr-list a { padding: 13px 0 !important; }
}

/* ============= Responsive — 360 px (very small phones) ============= */
@media (max-width: 360px) {
  :root { --gutter: 14px; }
  h1 { font-size: 26px; }
  h2 { font-size: 20px; }
  .btn { padding: 11px 16px; font-size: 12px; }
  .trust-cell { padding: 14px 10px; }
}
