/* ============================================================
   normandia-v7.css — Propuesta de rediseño Normandia Web
   Estilo: Neumorfismo / Claymorphism · light-first
   Paleta: neutro claro · púrpura (primario) · turquesa (secundario)
   ============================================================ */

:root {
  /* === PALETA · light-first neutro === */
  --bg:           #FAFAF9;   /* Fondo · base neumórfica */
  --bg-soft:      #F1F0ED;   /* recesos / footer */
  --bg-card:      #FAFAF9;   /* cards = base (neumorfismo) */
  --bg-deep:      #DEDCD7;   /* recesos profundos / insets */
  --bg-elev:      #FFFFFF;   /* Superficie / hover elevado */

  --text:         #1B1B1D;   /* texto primario */
  --text-soft:    #524F49;   /* texto secundario */
  --text-muted:   #6E6B63;   /* texto terciario */

  --brand-1:      #4C1D95;   /* púrpura · CTA / primario (mucho más oscuro · 900) */
  --brand-1-dark: #2E1065;   /* púrpura · hover (950) */
  --brand-1-deep: #2E1065;   /* púrpura · profundo */
  --brand-2:      #0D9079;   /* turquesa · secundario / acento */
  --brand-3:      #6D28D9;   /* púrpura · claro (para gradientes) */

  /* === GRADIENTES === */
  --grad-primary: linear-gradient(135deg, #7C3AED 0%, #5B21B6 50%, #1FCDAB 100%);
  --grad-button:  linear-gradient(135deg, #5B21B6 0%, #4C1D95 100%);
  --grad-button-hover: linear-gradient(135deg, #4C1D95 0%, #2E1065 100%);
  --grad-text:    linear-gradient(135deg, #4C1D95, #0D9079);

  /* === SOMBRAS NEUMÓRFICAS (light) === */
  --sh-light:     rgba(255, 255, 255, 0.90);
  --sh-dark:      rgba(180, 176, 166, 0.55);
  --sh-deep:      rgba(150, 146, 138, 0.25);

  --shadow-out:
    10px 10px 25px var(--sh-dark),
    -8px -8px 22px var(--sh-light);

  --shadow-out-sm:
    6px 6px 14px var(--sh-dark),
    -5px -5px 12px var(--sh-light);

  --shadow-out-lg:
    14px 14px 36px var(--sh-dark),
    -12px -12px 30px var(--sh-light);

  --shadow-inset:
    inset 4px 4px 10px var(--sh-dark),
    inset -3px -3px 8px var(--sh-light);

  --shadow-button:
    5px 5px 14px rgba(174, 170, 160, 0.50),
    -3px -3px 10px rgba(255, 255, 255, 0.85);

  --shadow-button-press:
    inset 3px 3px 8px rgba(174, 170, 160, 0.55),
    inset -2px -2px 6px rgba(255, 255, 255, 0.80);

  /* === RADIOS === */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* === ESPACIADO (8-pt) === */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;

  /* === TIPOGRAFÍA === */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-display: clamp(2.5rem, 5.5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.25rem);
  --fs-h3: clamp(1.125rem, 2vw, 1.375rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-fast: 180ms var(--ease);
  --t-base: 280ms var(--ease);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; color: var(--text); }
p { margin: 0 0 var(--s-3); color: var(--text-soft); }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--s-6);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 249, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: var(--s-4);
  gap: var(--s-6);
}
.brand {
  display: flex; align-items: center; gap: var(--s-3);
  text-decoration: none;
}
.brand-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--bg);
  box-shadow: var(--shadow-out-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-icon svg { width: 28px; height: 28px; }
.brand-name {
  font-weight: 800; font-size: 1.0625rem;
  color: var(--text); letter-spacing: -0.01em;
  white-space: nowrap;
}
/* Lockup logo (imagen PNG transparente) */
.brand-logo { height: 38px; width: auto; display: block; }
.site-footer .brand-logo { height: 34px; }
@media (max-width: 640px) { .brand-logo { height: 30px; } }

.primary-nav {
  display: flex; gap: var(--s-1); align-items: center;
  flex: 1; justify-content: center;
}
.primary-nav a {
  padding: var(--s-2) var(--s-4);
  font-weight: 600; font-size: 0.9375rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: var(--r-pill);
  transition: all var(--t-fast);
}
.primary-nav a:hover { color: var(--text); background: var(--bg-soft); }
.primary-nav a.active {
  color: var(--brand-1-dark);
  background: var(--bg);
  box-shadow: var(--shadow-inset);
}

.header-cta {
  display: flex; align-items: center; gap: var(--s-3);
}
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--bg);
  box-shadow: var(--shadow-out-sm);
  color: var(--brand-1-dark);
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: var(--s-3) var(--s-6);
  font-weight: 700; font-size: 0.9375rem; letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-button);
  color: #fff;
  box-shadow: var(--shadow-button);
}
.btn-primary:hover {
  background: var(--grad-button-hover);
  transform: translateY(-1px);
}
.btn-primary:active {
  box-shadow: var(--shadow-button-press);
  transform: translateY(0);
}
.btn-ghost {
  background: var(--bg);
  color: var(--brand-1-dark);
  box-shadow: var(--shadow-out-sm);
}
.btn-ghost:hover { box-shadow: var(--shadow-out); transform: translateY(-1px); }
.btn-link {
  color: var(--brand-1-dark);
  font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: var(--s-2) 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}
.btn-link:hover { border-bottom-color: var(--brand-1-dark); }

/* ---------- HERO ---------- */
.hero {
  padding: var(--s-20) 0 var(--s-16);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
.hero h1 {
  font-size: var(--fs-display);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-5);
}
.hero .lead {
  font-size: 1.125rem;
  color: var(--text-soft);
  max-width: 50ch;
  margin-bottom: var(--s-8);
}
.hero .hero-illu {
  position: relative;
  padding: var(--s-6);
  border-radius: var(--r-xl);
}
.hero .hero-illu svg { width: 100%; height: auto; max-width: 520px; margin-inline: auto; }

/* Page hero (smaller) */
.page-hero {
  padding: var(--s-16) 0 var(--s-10);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-10);
  align-items: center;
}
.page-hero h1 {
  font-size: var(--fs-h1);
  text-transform: uppercase;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-4);
}
.page-hero .lead {
  font-size: 1.0625rem;
  color: var(--text-soft);
  max-width: 50ch;
}
.page-hero-illu svg { max-width: 360px; margin-inline: auto; }

/* ---------- SECTIONS ---------- */
.section {
  padding: var(--s-16) 0;
}
.section-head {
  text-align: center;
  margin-bottom: var(--s-12);
}
.section-head h2 {
  font-size: var(--fs-h2);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: var(--s-3);
}
.section-head .lede {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 60ch;
  margin: 0 auto;
}

/* ---------- CARDS ---------- */
.card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-out);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex; flex-direction: column;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-out-lg); }

.card-icon {
  width: 72px; height: 72px;
  background: var(--bg);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-out-sm);
  margin-bottom: var(--s-5);
  flex-shrink: 0;
}
.card-icon svg { width: 44px; height: 44px; }

.card-num {
  font-size: 0.75rem; font-weight: 700;
  color: var(--brand-1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}
.card h3 {
  font-size: 1.0625rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: var(--s-3);
  min-height: 2.5em;
}
.card p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: var(--s-4);
  flex-grow: 1;
}

/* Service card variant — horizontal */
.card-horizontal {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--s-5);
  align-items: flex-start;
}
.card-horizontal .card-icon { margin-bottom: 0; }
.card-horizontal h3 { min-height: 0; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

/* Project card */
.project-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-out);
  display: flex; flex-direction: column;
  gap: var(--s-4);
  transition: transform var(--t-base);
}
.project-card:hover { transform: translateY(-4px); }
.project-thumb {
  aspect-ratio: 16/10;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-inset);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.project-thumb svg { width: 60%; height: 60%; }
.project-card .project-name {
  font-size: 1rem; font-weight: 700;
  color: var(--text);
  text-align: center;
}
.project-card .project-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Blog post card */
.post-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-out);
  display: flex; flex-direction: column;
  gap: var(--s-4);
  transition: transform var(--t-base);
}
.post-card:hover { transform: translateY(-4px); }
.post-thumb {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-inset);
  display: flex; align-items: center; justify-content: center;
}
.post-thumb svg { width: 55%; height: 55%; }
.post-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.005em;
  text-transform: none;
  min-height: 0;
}
.post-card p { font-size: 0.875rem; margin: 0; }
.post-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Featured post */
.post-featured {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s-6);
  padding: var(--s-6);
  background: var(--bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-out);
  margin-bottom: var(--s-10);
  align-items: center;
}
.post-featured .post-thumb { aspect-ratio: 1; }
.post-featured h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: var(--s-3); }

/* ---------- CONTACTO INFO CARDS ---------- */
.contact-info {
  display: flex; flex-direction: column; gap: var(--s-4);
}
.info-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-out-sm);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-4);
  align-items: center;
}
.info-card .info-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  box-shadow: var(--shadow-out-sm);
  display: flex; align-items: center; justify-content: center;
}
.info-card .info-icon svg { width: 38px; height: 38px; }
.info-card h3 {
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-2);
  font-weight: 800;
}
.info-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* ---------- FORM ---------- */
.form-card {
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  box-shadow: var(--shadow-out-lg);
  max-width: 520px;
}
.form-card h2 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: var(--s-6);
  font-weight: 800;
}
.form-group { margin-bottom: var(--s-4); }
.form-control {
  width: 100%;
  padding: var(--s-4) var(--s-5);
  font-size: 0.9375rem;
  background: var(--bg);
  border: 0;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-inset);
  color: var(--text);
  outline: none;
  transition: box-shadow var(--t-fast);
}
.form-control:focus {
  box-shadow:
    inset 4px 4px 10px rgba(174, 170, 160, 0.55),
    inset -3px -3px 8px rgba(255, 255, 255, 0.90),
    0 0 0 3px rgba(76, 29, 149, 0.32);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control {
  min-height: 140px;
  border-radius: var(--r-md);
  font-family: inherit;
}
select.form-control {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-soft) 50%),
    linear-gradient(135deg, var(--text-soft) 50%, transparent 50%);
  background-position: calc(100% - 22px) center, calc(100% - 16px) center;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
.form-card .btn { width: 100%; padding: var(--s-4) var(--s-6); margin-top: var(--s-3); }

/* CTA section that follows pages */
.cta-section {
  padding: var(--s-16) 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-10);
  align-items: center;
}
.cta-text h2 {
  font-size: var(--fs-h2);
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.cta-text p {
  font-size: 1.0625rem;
  max-width: 40ch;
}

/* ---------- MAP CARD ---------- */
.map-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-out);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.map-canvas {
  aspect-ratio: 16/10;
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, #F1F0ED 0%, #DEDCD7 100%);
  box-shadow: var(--shadow-inset);
  position: relative;
  overflow: hidden;
}
.map-canvas::before, .map-canvas::after {
  content: ''; position: absolute;
  background: rgba(255,255,255,0.70);
  height: 2px;
}
.map-canvas::before { top: 30%; left: 0; right: 0; transform: rotate(8deg); }
.map-canvas::after { top: 65%; left: 0; right: 0; transform: rotate(-5deg); }
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
}
.map-pin svg { width: 56px; height: 56px; filter: drop-shadow(0 6px 12px rgba(91,33,182,0.28)); }
.map-card h3 {
  font-size: 1.0625rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.06em;
}

/* ---------- INDUSTRIES GRID ---------- */
.industry-tile {
  background: var(--bg);
  border-radius: var(--r-md);
  padding: var(--s-5);
  box-shadow: var(--shadow-out-sm);
  display: flex; align-items: center; gap: var(--s-4);
  transition: transform var(--t-fast);
}
.industry-tile:hover { transform: translateY(-2px); }
.industry-tile .icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  box-shadow: var(--shadow-inset);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.industry-tile .icon svg { width: 28px; height: 28px; }
.industry-tile .name {
  font-weight: 700; font-size: 0.9375rem;
  color: var(--text);
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-inset);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  margin-block: var(--s-12);
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: 2.5rem; font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: var(--s-2);
}
.stat-item .label {
  font-size: 0.8125rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.site-footer {
  margin-top: var(--s-16);
  padding: var(--s-12) 0 var(--s-8);
  background: var(--bg-soft);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-8);
}
.footer-col h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-4);
  color: var(--text);
}
.footer-col p, .footer-col a {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.7;
  display: block;
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--brand-1-dark); }
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: var(--s-5);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s-4);
  font-size: 0.8125rem; color: var(--text-muted);
}
.footer-social {
  display: flex; gap: var(--s-2);
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--bg);
  box-shadow: var(--shadow-out-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-1-dark);
  transition: transform var(--t-fast);
}
.footer-social a:hover { transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

/* ---------- BREADCRUMB BAR (proposal disclaimer) ---------- */
.proposal-bar {
  background: var(--brand-1);
  color: #fff;
  text-align: center;
  padding: var(--s-2) var(--s-4);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
.proposal-bar a { color: #fff; text-decoration: underline; font-weight: 600; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .cta-grid { grid-template-columns: 1fr; }
  .hero { padding: var(--s-12) 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: var(--s-5); }
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .post-featured { grid-template-columns: 1fr; }
  .post-featured .post-thumb { aspect-ratio: 16/10; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .container { padding-inline: var(--s-4); }
  .hero h1 { font-size: 2rem; }
  .info-card { grid-template-columns: 1fr; text-align: center; }
  .info-card .info-icon { margin-inline: auto; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .form-card { padding: var(--s-5); }
  .footer-grid { grid-template-columns: 1fr; }
  .header-cta .btn { display: none; }
  .card-horizontal { grid-template-columns: 1fr; text-align: center; }
  .card-horizontal .card-icon { margin-inline: auto; }
}

/* Hide nav button on desktop */
@media (min-width: 981px) { .menu-toggle { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 100;
  padding: var(--s-8) var(--s-6);
  flex-direction: column; gap: var(--s-4);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--s-6); }
.mobile-drawer a {
  font-size: 1.125rem; font-weight: 700;
  padding: var(--s-3) var(--s-4);
  color: var(--text);
  border-radius: var(--r-md);
}
.mobile-drawer a.active { background: var(--bg-soft); box-shadow: var(--shadow-inset); }
.mobile-drawer-close {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--bg);
  box-shadow: var(--shadow-out-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-1-dark);
}
