/* =====================================================
   Bocaditos de Mi Tierra S.A.S.
   assets/css/estilos.css — Estilos globales
   Tema oscuro dorado · versión 2.0
   ===================================================== */

/* ─── 1. FUENTES ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── 2. VARIABLES ───────────────────────────────── */
:root {
    --bg:           #0d0d0b;
    --bg-card:      #141410;
    --bg-surface:   #191914;
    --bg-input:     #1a1a14;

    --gold:         #c9993a;
    --gold-light:   #e8b84b;
    --gold-dim:     #7a5c1e;
    --gold-subtle:  rgba(201,153,58,.09);
    --gold-glow:    rgba(201,153,58,.13);

    --cream:        #f5efe4;
    --cream-muted:  #c4b89a;
    --text:         #ede8dc;
    --text-muted:   #7e7868;
    --border:       rgba(201,153,58,.16);
    --border-hover: rgba(201,153,58,.42);
    --border-solid: #252520;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --nav-h:        68px;
    --radius:       3px;
    --radius-md:    8px;
    --ease:         cubic-bezier(.4,0,.2,1);
    --t:            .22s;
    --shadow:       0 8px 32px rgba(0,0,0,.45);
    --shadow-gold:  0 0 28px rgba(201,153,58,.14);
}

/* ─── 3. RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-light); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--cream); }

ul, ol { list-style: none; }

/* ─── 4. TIPOGRAFÍA ──────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.12;
    color: var(--cream);
}

/* ─── 5. LAYOUT ──────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 2rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── 6. COMPONENTES COMUNES ─────────────────────── */
.section-label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .8rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.7rem);
    color: var(--cream);
    margin-bottom: 1rem;
}
.section-body {
    font-size: 1rem;
    color: var(--cream-muted);
    font-weight: 300;
    max-width: 560px;
}
.divider {
    width: 40px; height: 2px;
    background: var(--gold);
    margin: 1.1rem 0 2rem;
    border: none;
}
.divider--center { margin-left: auto; margin-right: auto; }
.section--surface {
    background: var(--bg-surface);
    border-top: .5px solid var(--border);
    border-bottom: .5px solid var(--border);
}
.section-divider {
    height: 1px;
    background: var(--border);
    margin: 5rem 0;
}

/* ─── 7. BOTONES ─────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font-body);
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 13px 26px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background var(--t), color var(--t), transform var(--t), border-color var(--t);
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--gold); color: #0d0d0b; }
.btn--primary:hover { background: var(--gold-light); color: #0d0d0b; }

.btn--ghost {
    background: transparent;
    color: var(--cream-muted);
    border: .5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); background: var(--gold-subtle); }

.btn--sm { font-size: .78rem; padding: 9px 18px; }
.btn--lg { font-size: .9rem;  padding: 16px 36px; }

.btn-group { display: flex; gap: .9rem; flex-wrap: wrap; }

/* ─── 8. HEADER ──────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(13,13,11,.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: .5px solid var(--border);
    transition: background var(--t);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    gap: 1.5rem;
}

/* Brand */
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-logo { height: 42px; width: auto; object-fit: contain; }
.brand-text, .brand-text--fallback {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: .02em;
}
.brand-tagline {
    font-size: .66rem;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Nav links */
.main-nav ul { display: flex; gap: 1.8rem; align-items: center; }
.main-nav a {
    color: var(--cream-muted);
    font-size: .86rem;
    font-weight: 500;
    letter-spacing: .04em;
    position: relative;
    padding-bottom: 2px;
    transition: color var(--t);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--t);
}
.main-nav a:hover, .main-nav a.nav-active { color: var(--gold-light); }
.main-nav a:hover::after, .main-nav a.nav-active::after { width: 100%; }

/* ─── 9. SELECTOR DE IDIOMA ──────────────────────── */
.lang-switcher { position: relative; }

.lang-current {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: transparent;
    border: .5px solid var(--border);
    border-radius: 20px;
    color: var(--cream-muted);
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 6px 12px 6px 10px;
    cursor: pointer;
    transition: all var(--t);
}
.lang-current:hover { border-color: var(--gold); color: var(--gold-light); }

.lang-flag { font-size: 1rem; }
.lang-chevron { transition: transform var(--t); opacity: .7; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: .5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-width: 150px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity var(--t), transform var(--t);
    z-index: 300;
}
.lang-switcher.open .lang-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.lang-dropdown li {
    padding: 10px 16px;
    font-size: .88rem;
    color: var(--cream-muted);
    cursor: pointer;
    transition: background var(--t), color var(--t);
    display: flex;
    align-items: center;
    gap: .5rem;
}
.lang-dropdown li:hover { background: var(--gold-subtle); color: var(--gold-light); }
.lang-dropdown li.selected { color: var(--gold-light); font-weight: 600; }

/* RTL soporte árabe */
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .main-nav ul { flex-direction: row-reverse; }
[dir="rtl"] .about-grid { direction: rtl; }

/* ─── 10. HAMBURGER MOBILE ───────────────────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: .5px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 11px;
    cursor: pointer;
}
.nav-hamburger span {
    display: block;
    width: 20px; height: 1.5px;
    background: var(--cream-muted);
    border-radius: 2px;
    transition: all var(--t);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── 11. HERO (index) ───────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../assets/img/fondo.png');
    background-size: cover;
    background-position: center;
}
.hero-bg__img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .0;
}
.hero-bg__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 55% at 50% 40%, rgba(201,153,58,.08) 0%, transparent 68%),
        linear-gradient(to bottom, rgba(13,13,11,.6) 0%, rgba(13,13,11,.85) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--gold-dim);
}
.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    letter-spacing: -.01em;
    margin-bottom: .25em;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-title--sm { font-size: clamp(2rem, 4.5vw, 3.5rem); }

.hero-subtitle {
    font-size: 1.06rem;
    color: var(--cream-muted);
    font-weight: 300;
    max-width: 520px;
    margin: 1rem auto 2.5rem;
}
.hero-scroll-line {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px; height: 70px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
    opacity: .65;
}

.redes-sociales {
    list-style: none;       /* 1. Elimina los puntos (viñetas) por defecto */
    padding: 0;             /* 2. Quita el espacio interno izquierdo del navegador */
    margin: 0;              /* 3. Limpia los márgenes externos */
    
    display: flex;          /* 4. Alinea los elementos li horizontalmente */
    flex-direction: row;    /* Asegura la dirección en fila (horizontal) */
    align-items: center;    /* Centra los elementos verticalmente */
    gap: 20px;              /* 5. Controla la separación de espacio entre los botones */
}

/* ─── 12. HERO PÁGINA PRODUCTOS ──────────────────── */
.page-hero {
    min-height: 46vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
    position: relative;
    overflow: hidden;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 50%, rgba(201,153,58,.07) 0%, transparent 65%),
        linear-gradient(160deg, var(--bg-surface) 0%, var(--bg) 100%);
    z-index: 0;
}
.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: 1.2rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ─── 13. NOSOTROS ───────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius);
    border: .5px solid var(--border);
}
.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--bg-surface);
    border: .5px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    color: var(--text-muted);
    font-size: .82rem;
    letter-spacing: .05em;
}
.about-badge {
    position: absolute;
    bottom: -1.4rem;
    right: -1.4rem;
    background: var(--gold);
    color: #0d0d0b;
    padding: 1.1rem 1.4rem;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-gold);
}
.about-badge__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.about-badge__label { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

/* ─── 14. VALORES ────────────────────────────────── */
.values-header { margin-bottom: 3rem;
 }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.value-item { border-left: 2px solid var(--gold-dim); padding-left: 1.4rem; }
.value-icon  { font-size: 1.5rem; display: block; margin-bottom: .7rem; }
.value-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: .4rem; }
.value-text  { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* ─── 15. PRODUCTOS GRID ─────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
}
.products-grid--preview {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-card);
    border: .5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.product-card__img-wrap { position: relative; overflow: hidden; }
.product-card__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-bottom: .5px solid var(--border);
    transition: transform .4s var(--ease);
    background: var(--bg-surface);
}
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__img--placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-surface);
    border-bottom: .5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
}
.product-card__badge {
    position: absolute;
    top: .75rem; left: .75rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
}
.product-card__badge--new { background: var(--gold); color: #0d0d0b; }

.product-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.product-card__tag  { font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
.product-card__name { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--cream); }
.product-card__desc { font-size: .87rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.product-card__body .btn { margin-top: .8rem; align-self: flex-start; }

/* ─── 16. FILTROS (productos.php) ────────────────── */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 2.5rem;
}
.filter-btn {
    background: transparent;
    border: .5px solid var(--border-solid);
    border-radius: 20px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .06em;
    padding: 6px 16px;
    cursor: pointer;
    transition: all var(--t);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-light); }
.filter-btn--active { background: var(--gold); border-color: var(--gold); color: #0d0d0b; font-weight: 700; }

/* ─── 17. CTA CATÁLOGO ───────────────────────────── */
.catalog-cta {
    margin-top: 4rem;
    background: var(--bg-surface);
    border: .5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.catalog-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, var(--gold-glow), transparent);
    pointer-events: none;
}
.catalog-cta__inner { position: relative; z-index: 1; }
.catalog-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    color: var(--cream);
    margin: .5rem 0 1.8rem;
}

/* ─── 18. CONTACTO ───────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.7rem;
}
.contact-item__icon {
    width: 44px; height: 44px;
    background: var(--gold-subtle);
    border: .5px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-item__label { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.contact-item__value { font-size: .92rem; color: var(--cream-muted); margin: 0; }

/* Formulario */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group   { display: flex; flex-direction: column; gap: .4rem; }
.form-label   { font-size: .73rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-textarea {
    background: var(--bg-input);
    border: .5px solid var(--border-solid);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: .94rem;
    padding: 12px 14px;
    outline: none;
    width: 100%;
    transition: border-color var(--t);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }

.alert { padding: .9rem 1.2rem; border-radius: var(--radius); font-size: .9rem; border-left: 3px solid; margin-bottom: 1rem; }
.alert--success { background: rgba(29,158,117,.1); border-color: #1d9e75; color: #5dcaa5; }
.alert--error   { background: rgba(226,75,74,.1);  border-color: #e24b4a; color: #f09595; }

/* Estilo del contenedor para que sea elegante y responsivo */
.contenedor_mapa {
  position: relative;
  max-width: 600px; 
  max-height: 150px;        /* Cambia esto al ancho máximo que desees */
  margin: 1px auto;        /* Centra el mapa en tu página */
  border-radius: 20px;      /* Bordes redondeados modernos */
  overflow: hidden;         /* Obliga al mapa a respetar las esquinas redondeadas */
  box-shadow: 0 15px 35px rgba(231, 184, 28, 0.1); /* Sombra suave y profunda */
  border: 4px solid #ddca5b; /* Un elegante borde blanco exterior */
  
  /* Mantener proporción de aspecto elegante */
  padding-bottom: 45%;      
  height: 0;
}

/* Ajustes obligatorios para el iframe interno */
.contenedor_mapa iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* --- EFECTO DE ADORNO DE COLOR (Elige uno y descoméntalo) --- */
  
  /* Opción A: Estilo vintage / minimalista cálido */
  /* filter: sepia(20%) hue-rotate(10deg) saturate(90%); */
  
  /* Opción B: Estilo corporativo elegante / tonos fríos */
  /* filter: hue-rotate(190deg) saturate(80%); */
  
  /* Opción C: Integración sutil (Baja la saturación para que no compita con tu web) */
  filter: saturate(85%) contrast(105%);
  
  transition: filter 0.4s ease;
}

/* Efecto interactivo al pasar el mouse por encima */
.contenedor_mapa:hover iframe {
  filter: saturate(110%) contrast(100%); /* Recupera el color original vívido */
}



/* ─── 19. FOOTER ─────────────────────────────────── */
.site-footer {
    background: var(--bg-surface);
    border-top: .5px solid var(--border);
    padding: 2.2rem 2rem;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy  { font-size: .82rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: .82rem; color: var(--text-muted); transition: color var(--t); }
.footer-links a:hover { color: var(--gold-light); }

/* ─── 20. ANIMACIONES ────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeUp .55s var(--ease) both; }
.d1 { animation-delay: .08s; }
.d2 { animation-delay: .18s; }
.d3 { animation-delay: .28s; }

/* ─── 21. ACCESIBILIDAD ──────────────────────────── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--radius); }
.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; }

/* ─── 22. RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-badge { position: static; display: inline-block; margin-top: 1.2rem; }
    .products-grid--preview { grid-template-columns: 1fr; max-width: 360px; }
}

@media (max-width: 700px) {
    section { padding: 4rem 1.2rem; }
    .header-inner { padding: 0 1.2rem; }
    .main-nav { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(13,13,11,.98); padding: 1.5rem 1.5rem 2rem; border-bottom: .5px solid var(--border); }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav a { display: block; padding: .85rem 0; border-bottom: .5px solid var(--border-solid); font-size: 1rem; }
    .nav-hamburger { display: flex; }
    .brand-tagline { display: none; }
    .hero { padding: calc(var(--nav-h) + 3rem) 1.2rem 4rem; }
    .values-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .page-hero { padding: calc(var(--nav-h) + 2rem) 1.2rem 3rem; }
    .filter-bar { gap: .45rem; }
}