/* ============================================================
   TRANSPORTES SHALOM — Sistema de Diseño Compartido
   Versión 1.0
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Colores primarios */
  --clr-navy:        #0d1b3e;
  --clr-navy-dark:   #080f22;
  --clr-navy-mid:    #162248;
  --clr-navy-light:  #1e3163;

  /* Acento dorado */
  --clr-gold:        #c8a84b;
  --clr-gold-light:  #e6c96f;
  --clr-gold-dark:   #9e7d2e;

  /* Neutros */
  --clr-white:       #ffffff;
  --clr-off-white:   #f8f9fc;
  --clr-bg:          #f2f4f8;
  --clr-border:      #dde2ed;
  --clr-border-dark: #b8c0d4;

  /* Texto */
  --clr-text:        #0d1b3e;
  --clr-text-mid:    #3d4f72;
  --clr-text-muted:  #7a8aaa;
  --clr-text-light:  #a8b4cc;

  /* Estado */
  --clr-success:     #1a7f5a;
  --clr-success-bg:  #e6f7f1;
  --clr-warning:     #b45309;
  --clr-warning-bg:  #fef3c7;
  --clr-error:       #b91c1c;
  --clr-error-bg:    #fee2e2;
  --clr-info:        #1d4ed8;
  --clr-info-bg:     #dbeafe;

  /* Tipografía */
  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-xs:    0.75rem;
  --fs-sm:    0.875rem;
  --fs-base:  1rem;
  --fs-md:    1.125rem;
  --fs-lg:    1.25rem;
  --fs-xl:    1.5rem;
  --fs-2xl:   1.875rem;
  --fs-3xl:   2.25rem;
  --fs-4xl:   3rem;
  --fs-5xl:   3.75rem;

  --fw-normal:  400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;

  --lh-tight:   1.2;
  --lh-snug:    1.375;
  --lh-normal:  1.6;
  --lh-loose:   1.8;

  /* Espaciado */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;

  /* Bordes */
  --radius-sm:   4px;
  --radius:      8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-xs:  0 1px 2px rgba(13,27,62,0.06);
  --shadow-sm:  0 2px 6px rgba(13,27,62,0.08);
  --shadow:     0 4px 16px rgba(13,27,62,0.10);
  --shadow-md:  0 8px 28px rgba(13,27,62,0.14);
  --shadow-lg:  0 16px 48px rgba(13,27,62,0.18);
  --shadow-xl:  0 24px 64px rgba(13,27,62,0.22);

  /* Transiciones */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --dur-fast:   150ms;
  --dur-base:   250ms;
  --dur-slow:   400ms;

  /* Layout */
  --max-w:      1320px;
  --nav-h:      72px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-normal);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background: var(--clr-bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ── Tipografía ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--clr-navy);
}

.text-display { font-size: var(--fs-5xl); }
.text-h1      { font-size: var(--fs-4xl); }
.text-h2      { font-size: var(--fs-3xl); }
.text-h3      { font-size: var(--fs-2xl); }
.text-h4      { font-size: var(--fs-xl); }
.text-lg      { font-size: var(--fs-lg); }
.text-sm      { font-size: var(--fs-sm); }
.text-xs      { font-size: var(--fs-xs); }

.text-gold    { color: var(--clr-gold); }
.text-white   { color: var(--clr-white); }
.text-muted   { color: var(--clr-text-muted); }
.text-center  { text-align: center; }
.font-display { font-family: var(--font-display); }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section {
  padding-block: var(--sp-24);
}

.section--alt {
  background: var(--clr-white);
}

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

.flex       { display: flex; }
.flex-col   { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--sp-2); }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

.navbar--transparent {
  background: transparent;
}

.navbar--solid {
  background: var(--clr-navy);
  box-shadow: var(--shadow-md);
}

.navbar--scrolled {
  background: rgba(13, 27, 62, 0.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.navbar__inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.navbar__logo-icon {
  width: 42px;
  height: 42px;
  background: var(--clr-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: 1;
}

.navbar__logo-sub {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--clr-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

/* Mobile menu — oculto por defecto en todas las resoluciones;
   solo se muestra dentro del breakpoint móvil cuando tiene la clase .open */
.navbar__mobile-menu {
  display: none;
}

.navbar__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.82);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius);
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--clr-white);
  background: rgba(255,255,255,0.1);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease);
}

/* ── Botones ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  line-height: 1;
  border-radius: var(--radius);
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
  user-select: none;
}

.btn--primary {
  background: var(--clr-gold);
  color: var(--clr-navy-dark);
}
.btn--primary:hover {
  background: var(--clr-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,168,75,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--clr-white);
  background: rgba(255,255,255,0.08);
}

.btn--navy {
  background: var(--clr-navy);
  color: var(--clr-white);
}
.btn--navy:hover {
  background: var(--clr-navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-navy);
  border: 1.5px solid var(--clr-border-dark);
}
.btn--ghost:hover {
  background: var(--clr-bg);
  border-color: var(--clr-navy);
}

.btn--sm { padding: var(--sp-2) var(--sp-4); font-size: var(--fs-xs); }
.btn--lg { padding: var(--sp-4) var(--sp-8); font-size: var(--fs-base); }

.btn--full { width: 100%; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn--loading { pointer-events: none; position: relative; }
.btn--loading::after {
  content: '';
  width: 14px; height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: var(--sp-2);
}

/* ── Section Header ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.section-header__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.25);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-4);
}

.section-header__title {
  font-size: var(--fs-3xl);
  color: var(--clr-navy);
  margin-bottom: var(--sp-4);
}

.section-header__title em {
  font-style: normal;
  color: var(--clr-gold);
}

.section-header__desc {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: var(--lh-loose);
}

/* Línea decorativa */
.divider-gold {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  border-radius: var(--radius-full);
  margin: var(--sp-4) auto 0;
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--clr-bg);
}

.card__body { padding: var(--sp-6); }

.card__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  margin-bottom: var(--sp-2);
}

.card__title {
  font-size: var(--fs-xl);
  color: var(--clr-navy);
  margin-bottom: var(--sp-3);
}

.card__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}

/* ── Formularios ───────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-mid);
}

.form-label sup { color: var(--clr-error); }

.form-control {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--clr-text);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border-dark);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  appearance: none;
}

.form-control:focus {
  border-color: var(--clr-navy-light);
  box-shadow: 0 0 0 3px rgba(30,49,99,0.12);
}

.form-control::placeholder { color: var(--clr-text-light); }

.form-control--error {
  border-color: var(--clr-error);
  box-shadow: 0 0 0 3px rgba(185,28,28,0.1);
}

.form-hint {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--clr-error);
}

/* Select con flecha personalizada */
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: var(--sp-10);
}

/* ── Alertas ───────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
}

.alert--success { background: var(--clr-success-bg); color: var(--clr-success); border: 1px solid rgba(26,127,90,0.2); }
.alert--error   { background: var(--clr-error-bg);   color: var(--clr-error);   border: 1px solid rgba(185,28,28,0.2); }
.alert--warning { background: var(--clr-warning-bg); color: var(--clr-warning); border: 1px solid rgba(180,83,9,0.2); }
.alert--info    { background: var(--clr-info-bg);    color: var(--clr-info);    border: 1px solid rgba(29,78,216,0.2); }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 2px var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.badge--pending  { background: var(--clr-warning-bg); color: var(--clr-warning); }
.badge--active   { background: var(--clr-success-bg); color: var(--clr-success); }
.badge--done     { background: var(--clr-info-bg);    color: var(--clr-info);    }
.badge--canceled { background: var(--clr-error-bg);   color: var(--clr-error);   }

.badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ── Tabla ─────────────────────────────────────────────────── */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.table thead {
  background: var(--clr-navy);
  color: var(--clr-white);
}

.table th {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  font-weight: var(--fw-semi);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.table td {
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text-mid);
}

.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: var(--clr-off-white); }

/* ── Modal ─────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,15,34,0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90dvh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--dur-base) var(--ease);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) var(--sp-6) var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
}

.modal__title {
  font-size: var(--fs-xl);
  color: var(--clr-navy);
}

.modal__close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  color: var(--clr-text-muted);
  font-size: var(--fs-lg);
  transition: background var(--dur-fast) var(--ease);
}
.modal__close:hover { background: var(--clr-bg); color: var(--clr-text); }

.modal__body { padding: var(--sp-6); }
.modal__footer {
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--clr-border);
  display: flex;
  gap: var(--sp-3);
  justify-content: flex-end;
}

/* ── Toast / Notificación ──────────────────────────────────── */
.toast-container {
  position: fixed;
  top: calc(var(--nav-h) + var(--sp-4));
  right: var(--sp-6);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--clr-navy);
  color: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  min-width: 280px;
  max-width: 380px;
  pointer-events: all;
  animation: slideInRight var(--dur-base) var(--ease-out);
}

.toast--success { border-left: 4px solid var(--clr-gold); }
.toast--error   { border-left: 4px solid var(--clr-error); background: #1a0a0a; }

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--clr-navy-dark);
  color: var(--clr-text-light);
  padding-top: var(--sp-20);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}

.footer__brand-tagline {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-5);
}

.footer__desc {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: rgba(255,255,255,0.5);
}

.footer__col-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }

.footer__link {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast) var(--ease);
}
.footer__link:hover { color: var(--clr-gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-6);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
}

/* ── Spinner ───────────────────────────────────────────────── */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--clr-border);
  border-top-color: var(--clr-navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

/* ── Skeleton loader ───────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg,
    var(--clr-border) 25%,
    var(--clr-bg) 50%,
    var(--clr-border) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius);
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Social login buttons ──────────────────────────────────── */
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  width: 100%;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  border: 1.5px solid var(--clr-border-dark);
  background: var(--clr-white);
  color: var(--clr-text);
  transition: all var(--dur-base) var(--ease);
}

.social-btn:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--clr-navy);
  background: var(--clr-off-white);
}

.social-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Divider ──────────────────────────────────────────────── */
.or-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  color: var(--clr-text-muted);
  font-size: var(--fs-xs);
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-border);
}

/* ── Utilidades ────────────────────────────────────────────── */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.mt-2  { margin-top: var(--sp-2); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }

.p-4   { padding: var(--sp-4); }
.p-6   { padding: var(--sp-6); }

.rounded    { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }

.shadow    { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }

.bg-white   { background: var(--clr-white); }
.bg-navy    { background: var(--clr-navy); }
.bg-gold    { background: var(--clr-gold); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --max-w: 100%; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
    --sp-24: 4rem;
    --sp-20: 3rem;
    --sp-16: 2.5rem;
    --fs-4xl: 2.25rem;
    --fs-3xl: 1.75rem;
    --fs-5xl: 2.5rem;
  }

  .navbar__nav,
  .navbar__actions { display: none; }

  .navbar__toggle { display: flex; }

  .navbar__mobile-menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--clr-navy);
    padding: var(--sp-4);
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .navbar__mobile-menu.open { display: flex; flex-direction: column; gap: var(--sp-2); }
  .navbar__mobile-menu .navbar__link { padding: var(--sp-3) var(--sp-4); font-size: var(--fs-base); }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
  .container { padding-inline: var(--sp-4); }
}
