/* Aplicar box-sizing globalmente para un manejo consistente del tamaño de los elementos */
* {
    box-sizing: border-box;
}

/* Estilos personalizados y variables de color de la marca */
:root {
    --brand-primary: #272b65; /* Nuevo color primario (Dark Blue) */
    --brand-secondary: #0996c3; /* Nuevo color secundario (Bright Blue) */
    --brand-accent: #0996c3; /* Mismo color para acento */
    --brand-light: #f5f5f5;
    --brand-dark: #1a1f3d; /* Tono más oscuro de Primary */
    --brand-dark-text: var(--brand-primary);
}

/* Asegura que html y body ocupen el 100% de la altura del viewport */
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Aplica Flexbox al body para un "sticky footer" */
body {
    display: flex;
    flex-direction: column;
    font-family: 'Barlow', sans-serif;
    background-color: var(--brand-light);
    color: var(--brand-dark-text);
    padding-bottom: 70px;
    padding-top: 0;
}

@media (max-width: 767px) {
    body {
        padding-top: 95px;
    }
}

/* Estilo de fuente para títulos y elementos destacados */
h1, h2, h3, .font-heading {
    font-family: 'Barlow', sans-serif;
    font-weight: 900 !important;
    letter-spacing: 1px;
}

/* Animación de Pulso Sutil para Botones */
@keyframes pulse-subtle {
    0% { transform: scale(1); box-shadow: 0 6px 12px rgba(0,0,0,0.2); }
    50% { transform: scale(1.03); box-shadow: 0 12px 25px rgba(0,0,0,0.4); }
    100% { transform: scale(1); box-shadow: 0 6px 12px rgba(0,0,0,0.2); }
}

/* Componentes Personalizados: Botones */
.btn {
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 900;
    font-size: 1.5rem;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-transform: uppercase;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    animation: pulse-subtle 2.5s infinite ease-in-out;
}

.btn-primary {
    background-color: var(--brand-secondary);
    color: var(--brand-primary);
    border: 2px solid var(--brand-secondary);
}
.btn-primary:hover {
    background-color: var(--brand-primary);
    color: var(--brand-secondary);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    animation: none;
}

.btn-secondary {
    background-color: var(--brand-accent);
    color: white;
    border: 2px solid var(--brand-accent);
}
.btn-secondary:hover {
    filter: brightness(115%);
    animation: none;
}

/* Estilos para títulos y subtítulos de sección */
.section-title { font-size: 3rem; line-height: 1; text-align: center; margin-bottom: 0.5rem; }
@media (min-width: 640px) { .section-title { font-size: 3.5rem; } }
@media (min-width: 768px) { .section-title { font-size: 4rem; } }
.section-subtitle { font-size: 1.2rem; line-height: 1.2; text-align: center; font-family: 'Barlow', sans-serif; font-weight: 900 !important; text-transform: uppercase; }
@media (min-width: 640px) { .section-subtitle { font-size: 1.5rem; } }

/* Esquemas de color para títulos y subtítulos */
.title-light { color: var(--brand-primary); }
.subtitle-light { color: var(--brand-accent); }
.title-dark { color: white; }
.subtitle-dark { color: var(--brand-secondary); }

/* Estilos para campos de formulario */
.form-input {
    width: 100%;
    background-color: white !important;
    color: var(--brand-dark-text) !important;
    border: 2px solid #ccc;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}
.form-input::placeholder { color: #888; }
.form-input:focus {
    outline: none;
    border-color: var(--brand-secondary);
    box-shadow: 0 0 0 3px rgba(9, 150, 195, 0.5); /* Usando rgba del brand-secondary */
}

/* Estilo para la tarjeta de servicio */
.service-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 12px 20px -3px rgba(0, 0, 0, 0.15), 0 6px 8px -2px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.15), 0 12px 15px -5px rgba(0, 0, 0, 0.06);
}
.service-card .icon {
    font-size: 4.5rem;
    color: var(--brand-accent);
    margin-bottom: 1.5rem;
}
.service-card .title {
    font-size: 1.8rem;
    color: var(--brand-primary);
    font-weight: 900 !important;
    text-transform: uppercase;
}
.service-card p {
    font-size: 1rem;
}

/* Estilo para las imágenes divisorias */
.section-divider-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
@media (max-width: 767px) {
    body {
        padding-top: 95px;
    }
    .section-divider-img {
        height: 250px;
    }
}


/* Clases de utilidad para Tailwind */
.bg-brand-secondary { background-color: var(--brand-secondary); }
.bg-brand-primary { background-color: var(--brand-primary); }
.text-brand-secondary { color: var(--brand-secondary); }
.text-brand-primary { color: var(--brand-primary); }
.bg-brand-light { background-color: var(--brand-light); } /* Nueva clase agregada */
.bg-brand-dark { background-color: var(--brand-dark); } /* Nueva clase agregada */
.text-brand-accent { color: var(--brand-accent); } /* Nueva clase agregada */


/* Fondos de sección con imagen */
.hero-section-bg { background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('img/BG01.jpg'); background-size: cover; background-position: center; color: white; }
.solution-section-bg { background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('img/BG02.jpg'); background-size: cover; background-position: center; color: white; }
.why-choose-us-bg { background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('img/BG03.jpg'); background-size: cover; background-position: center; color: white; }
.how-it-works-bg { background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('img/BG04.jpg'); background-size: cover; background-position: center; color: white; }

/* --- ESTILOS CORREGIDOS PARA LA GALERÍA --- */
.gallery-main-display {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery-main-display img {
    width: 100%;
    max-width: 700px;
    height: 400px;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Estilos para la galería en pantallas de escritorio (md y superiores) */
@media (min-width: 768px) {
    .gallery-thumbnails-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 700px;  /* <-- Esta línea es clave para centrar la cuadrícula */
        margin-left: auto;
        margin-right: auto;
    }
}

.gallery-thumbnail-card {
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-thumbnail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.gallery-thumbnail-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
    border-color: var(--brand-accent);
}

.gallery-thumbnail-card.active {
    border-color: var(--brand-secondary);
    box-shadow: 0 0 0 5px rgba(9, 150, 195, 0.9); /* Sombra de color actualizada basada en brand-secondary */
    transform: scale(1.08);
}

/* Tarjetas Por Qué Elegirnos */
.why-choose-card { background: white; border-radius: 0.75rem; padding: 2rem; text-align: center; box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.why-choose-card:hover { transform: translateY(-8px); box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15); }
.why-choose-card .icon { font-size: 3.5rem; color: var(--brand-secondary); margin-bottom: 1rem; }
.why-choose-card .title { font-size: 1.5rem; color: var(--brand-primary); font-weight: 900 !important; margin-bottom: 0.75rem; }
.why-choose-card p { font-size: 0.95rem; color: #555; flex-grow: 1; }

/* Tarjetas de contacto */
.contact-info-section { background-color: white; color: var(--brand-dark-text); padding: 6rem 1.5rem; text-align: center; box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); }
.contact-cards-container { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; justify-content: center; align-items: center; }
@media (min-width: 768px) { .contact-cards-container { flex-direction: row; } }
.contact-card { background-color: white; padding: 1rem 1.25rem; border-radius: 1rem; box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15); display: flex; flex-direction: row; align-items: center; justify-content: flex-start; flex: 1; max-width: 380px; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; border: 3px solid var(--brand-primary); text-align: left; }
.contact-card:hover { transform: translateY(-5px) scale(1.01); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25); border-color: var(--brand-accent); }
.contact-card .icon-large { font-size: 3.5rem; margin-right: 0.75rem; line-height: 1; flex-shrink: 0; color: var(--brand-primary); }
.contact-card .text-content { display: flex; flex-direction: column; align-items: flex-start; flex-grow: 1; }
.contact-card .contact-label { font-size: 1.1rem; font-weight: 900; text-transform: uppercase; margin-bottom: 0.25rem; color: var(--brand-primary); }
.contact-card .contact-value {font-size: 1.1rem;font-weight: 900;display: block;text-decoration: none;transition: color 0.3s ease;color: var(--brand-accent);}
.contact-card .contact-value:hover { color: var(--brand-primary); }

/* AJUSTE PARA EL CORREO ELECTRÓNICO LARGO */
.contact-card.email-card .contact-value {
    font-size: 1.1rem;
    word-break: break-all;
}

/* ESTILOS ORIGINALES DEL FOOTER - SIN CAMBIOS */
footer {
    background-color: var(--brand-dark);
    color: white;
    padding: 1.5rem 1.5rem;
    text-align: center;
}
footer .footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}


footer .footer-logo-container img {
    width: 150px;
    height: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

footer .footer-logo-container .company-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    font-weight: 700;
}
footer .social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    transition: color 0.3s ease;
}
footer .social-links a:hover {
    color: var(--brand-secondary);
}
footer .footer-copyright,
footer .footer-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}
@media (min-width: 768px) {
    footer .footer-logo-container { flex-direction: row; justify-content: center; gap: 1rem; }
    footer .footer-logo-container img { margin-bottom: 0; }
    footer .social-links { justify-content: center; }
}


/* Botón flotante y Modal */
#openAgendaModalDesktop { position: fixed; right: 0; top: 50%; transform: translateY(-50%); background-color: var(--brand-accent); color: white; padding: 1.5rem 0.75rem; border-radius: 0.75rem 0 0 0.75rem; box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 1000; cursor: pointer; border: none; outline: none; display: none; }
@media (min-width: 768px) { #openAgendaModalDesktop { display: flex; flex-direction: column; align-items: center; justify-content: center; } }
#openAgendaModalDesktop span { font-size: 1.25rem; font-weight: 900; text-transform: uppercase; writing-mode: vertical-lr; text-orientation: mixed; white-space: nowrap; transform: rotate(180deg); }
#openAgendaModalDesktop i { font-size: 2.5rem; margin-top: 0.5rem; }
#openAgendaModalDesktop:hover { transform: translateY(-50%) translateX(-5px) scale(1.02); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
#agendaModal { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background-color: rgba(0, 0, 0, 0.75); display: flex; justify-content: flex-end; align-items: stretch; z-index: 1001; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
#agendaModal.active { opacity: 1; visibility: visible; }
#agendaModalContent { background-color: white; padding: 2.5rem; border-radius: 0; box-shadow: -15px 0 30px rgba(0, 0, 0, 0.4); height: 100%; position: relative; transform: translateX(100%); transition: transform 0.3s ease-out; display: flex; flex-direction: column; overflow-y: auto; }
#agendaModal.active #agendaModalContent { transform: translateX(0); }
@media (max-width: 768px) { #agendaModalContent { min-width: 100%; width: 100vw; border-radius: 0; position: fixed; bottom: 0; left: 0; right: 0; height: 100%; max-height: calc(100vh - 95px); transform: translateY(100%); box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.4); padding: 1.5rem; box-sizing: border-box; } #agendaModal.active #agendaModalContent { transform: translateY(0); } #agendaModal { align-items: flex-end; justify-content: center; } #agenda-form { flex-grow: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-bottom: 1rem; } }
#closeAgendaModal { position: absolute; top: 1rem; right: 1.2rem; font-size: 2.5rem; font-weight: bold; color: #888; cursor: pointer; transition: color 0.2s ease; }
#closeAgendaModal:hover { color: #333; }
header nav ul li a:hover { color: var(--brand-secondary) !important; }

/* =========================
   MENÚ MÓVIL — SLIDE-IN
   ========================= */

/* Overlay */
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background-color: rgba(0,0,0,.75);
  z-index: 1999;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1; visibility: visible;
}

/* Drawer */
.mobile-menu {
  position: fixed; top: 0; left: -100vw;
  width: 100vw; height: 100dvh;
  background-color: var(--brand-primary);
  color: #fff; z-index: 2000;
  box-shadow: 5px 0 15px rgba(0,0,0,.5);
  transition: left .3s ease-out;
  display: flex; flex-direction: column;
  padding: 0; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.active { left: 0; }

/* Header dentro del menú */
.mobile-menu-header {
  display: flex; flex-direction: column; align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.2);
  margin-bottom: 1.5rem;
}
.mobile-menu-header img {
  width: 80%; max-width: 250px; height: auto; object-fit: contain;
  margin-bottom: .75rem;
}

/* Navegación */
.mobile-menu-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu-nav li { margin-bottom: 1rem; }
.mobile-menu-nav a {
  display: flex; align-items: center; gap: .75rem;
  color: #fff; font-size: 1.3rem; font-weight: 700;
  text-transform: uppercase; padding: .5rem 0;
  transition: color .2s ease;
}
.mobile-menu-nav a:hover { color: var(--brand-secondary); }

/* Footer interno del menú: NUNCA fixed */
.mobile-menu-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.2);
  text-align: center; font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.mobile-menu footer {
  position: static !important; bottom: auto !important; width: auto !important;
}

/* Botón hamburguesa / CTA header (solo móvil) */
.hamburger-icon { display: block; cursor: pointer; font-size: 2.5rem;
  color: var(--brand-primary); margin-left: auto; padding: .5rem; transition: color .2s ease;
}
.hamburger-icon:hover { color: var(--brand-accent); }
.btn-mobile-header {
  background-color: var(--brand-accent); color: #fff;
  padding: .5rem 1rem; border-radius: .5rem;
  font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: .5rem;
  text-transform: uppercase; transition: all .2s ease; border: none; outline: none; animation: none;
}
.btn-mobile-header:hover { background-color: var(--brand-primary); color: var(--brand-secondary);
  box-shadow: 0 2px 5px rgba(0,0,0,.2);
}
@media (min-width: 768px) {
  .hamburger-icon, .btn-mobile-header { display: none; }
}

/* CTA fijo inferior global (se oculta con menú abierto) */
#fixedBottomQuoteBtn {
  background-color: var(--brand-secondary); color: var(--brand-primary);
  padding: 1rem 0; font-weight: 900; font-size: 1.25rem; text-transform: uppercase;
  box-shadow: 0 -5px 15px rgba(0,0,0,.2);
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; display: none;
}
@media (max-width: 767px) {
  #fixedBottomQuoteBtn { display: flex; align-items: center; justify-content: center; gap: .75rem; }
}
#fixedBottomQuoteBtn:hover { background-color: var(--brand-primary); color: var(--brand-secondary); }

/* Estado: menú abierto (bloquea fondo y oculta fijos del layout) */
body.menu-open {
  overflow: hidden !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.menu-open #fixedBottomQuoteBtn,
body.menu-open #openAgendaModalDesktop {
  display: none !important;
}

/* =========================
   NAV FIJA
 ========================== */
.sticky-nav{
  position:fixed; top:0; width:100%; z-index:50;
  transition:all .3s ease-in-out;
}

/* =========================
   MODAL AGENDA (unificado)
   Soporta: .active | .is-open | [data-open="true"]
 ========================== */
#agendaModal{
  display:none; opacity:0; visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
}
/* Compat: si alguien deja esta clase en el markup */
#agendaModal.initial-hidden{ display:none; opacity:0; visibility:hidden; }

/* CUALQUIER estado "abierto" */
#agendaModal.active,
#agendaModal.is-open,
#agendaModal[data-open="true"]{
  display:flex; opacity:1; visibility:visible;
}
/* Deslizamiento del panel de contenido */
#agendaModalContent{
  transform:translateX(100%);
  transition:transform .3s ease-out;
}
#agendaModal.active    #agendaModalContent,
#agendaModal.is-open  #agendaModalContent,
#agendaModal[data-open="true"] #agendaModalContent{
  transform:translateX(0);
}

/* Footer de menú móvil que no flote */
.mobile-menu-footer{ position:static !important; }

/* =========================
   INPUTS (Tailwind @apply) - CORREGIDO
 ========================== */
.form-input{
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: white;
  color: var(--brand-primary);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.form-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.form-input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--brand-accent);
}

/* =========================
   ACCESIBILIDAD/MOTION
 ========================== */
@media (prefers-reduced-motion: reduce){
  #gallery-section *,
  #coverage-area *,
  [data-aos]{
    transition:none !important; animation:none !important;
  }
}
/* Fallback si AOS no carga (evita elementos invisibles) */
[data-aos]{opacity:1 !important; transform:none !important;}

/* =========================
   SCROLLBARS (galería)
 ========================== */
#gallery-section aside .max-h-\[520px\]::-webkit-scrollbar{ width:8px; }
#gallery-section aside .max-h-\[520px\]::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.15); border-radius:20px; }
#gallery-section aside .max-h-\[520px\]::-webkit-scrollbar-track{ background:transparent; }

/* =========================
   HOURS / LIVE STATUS
 ========================== */
#current-status-display.is-open{
  background-image:linear-gradient(135deg,#059669,#065f46);
}
#current-status-display.is-closed{
  background-image:linear-gradient(135deg,#b91c1c,#7f1d1d);
}
#current-status-display.is-closed .state-dot,
#current-status-display.is-closed .state-dot>span{
  background-color:#f87171 !important;
}

#hours-grid .is-today{
  outline:2px solid color-mix(in srgb, var(--brand-accent) 60%, transparent);
  background:color-mix(in srgb, var(--brand-secondary) 12%, white);
  border-radius:1rem;
}
#hours-grid>li{
  display:flex; align-items:center; justify-content:space-between;
  padding:1rem 1.1rem; border-radius:1rem; background:#fff;
  box-shadow:0 1px 1px rgba(0,0,0,.03); border:1px solid rgba(0,0,0,.06);
}
#hours-grid>li .day{ font-weight:800; color:var(--brand-primary); }
#hours-grid>li .range{ color:color-mix(in srgb, var(--brand-primary) 78%, #0000); font-weight:600; }

/* =========================
   CTA / CONTACT BAR SKIN
 ========================== */
:root{
  --accent: var(--brand-accent);
  --accent-ink: color-mix(in oklab, var(--brand-primary), black 12%);
  --accent-ink-weak: color-mix(in oklab, var(--brand-primary), black 35%);
  --chip-shadow: 0 10px 24px rgba(0,0,0,.10);
}
.cta-primary{
  background:linear-gradient(180deg,var(--accent) 0%, color-mix(in oklab, var(--accent), black 14%) 100%);
  color:var(--accent-ink);
  border:1px solid color-mix(in oklab, var(--accent), black 22%);
  box-shadow:0 12px 24px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.55);
  height:56px; border-radius:14px; letter-spacing:.02em;
}
.cta-primary:hover{ transform:translateY(-1px); box-shadow:0 16px 30px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.6); }
.cta-primary:active{ transform:translateY(0);    box-shadow:0 10px 20px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.45); }

#altContactBar{
  background:linear-gradient(180deg,var(--brand-secondary) 0%, color-mix(in oklab, var(--brand-secondary), black 10%) 100%);
  border-top:1px solid rgba(0,0,0,.08);
}
#altContactBar .bar-title{
  font-size:.70rem; letter-spacing:.22em; text-transform:uppercase;
  font-weight:900; color:var(--accent-ink-weak);
}
#altContactBar .bar-note{
  font-size:.70rem; letter-spacing:.04em; color:var(--accent-ink-weak);
}
#altContactBar .contact-grid{
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:.75rem;
}
@media(max-width:639px){
  #altContactBar .contact-grid{ grid-template-columns:1fr; }
}
.contact-chip{
  background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:14px;
  padding:.9rem 1rem; box-shadow:var(--chip-shadow);
  display:flex; align-items:center; justify-content:center; gap:.6rem; min-height:64px;
}
.contact-chip i{ font-size:1.15rem; color:var(--accent); }
.contact-chip .k{
  font-weight:900; text-transform:uppercase; letter-spacing:.16em;
  font-size:.65rem; line-height:1; color:var(--accent-ink-weak);
}
.contact-chip .v{
  font-weight:800; letter-spacing:.02em; line-height:1.15;
  color:var(--accent-ink); white-space:nowrap;
}
.contact-chip .sub{
  font-weight:500; opacity:.7; font-size:.8rem; letter-spacing:.01em;
}