/* =====================================================
   MKR — New Public Layout "Precision Heritage"
   Bebas Neue · Cormorant Garamond · DM Sans
   Dark/Industrial · Red #ea281f accent
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lora:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* --- Variables --- */
:root {
  --black:       #080808;
  --dark:        #111214;
  --dark-2:      #181820;
  --dark-card:   #1c1c24;
  --red:         #ea281f;
  --red-dark:    #c0211a;
  --white:       #f4f2ee;
  --off-white:   #eceae5;
  --gray:        #888;
  --gray-lt:     #bbb;
  --border:      rgba(255,255,255,0.07);
  --border-dark: rgba(0,0,0,0.12);
  --ff-display:  'Bebas Neue', sans-serif;
  --ff-serif:    'Lora', serif;
  --ff-body:     'DM Sans', sans-serif;
  --nav-h:       72px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --t:           0.3s;
}

/* --- Reset --- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { max-width:100%; display:block; }
a    { color:inherit; text-decoration:none; }
address { font-style:normal; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.ht-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  background: transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.ht-nav.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}
.ht-nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0;
}
.ht-nav-logo { flex-shrink:0; margin-right:auto; display:flex; align-items:center; }
.ht-nav-logo img { height:34px; width:auto; }
.ht-nav-logo-text {
  font-family: var(--ff-display);
  font-size: 30px;
  letter-spacing: 4px;
  color: var(--white);
}
.ht-nav-logo-text em { font-style:normal; color:var(--red); }

.ht-nav-links { display:flex; list-style:none; gap:4px; align-items:center; }
.ht-nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(244,242,238,0.6);
  padding: 8px 14px;
  transition: color var(--t);
  position: relative;
}
.ht-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.ht-nav-links a:hover,
.ht-nav-links a.active { color:var(--white); }
.ht-nav-links a:hover::after,
.ht-nav-links a.active::after { transform:scaleX(1); }

.ht-nav-sram-link { padding:6px 10px; }
.ht-nav-sram-img {
  height: 20px; width:auto;
  opacity: 0.6;
  transition: opacity var(--t);
  filter: brightness(0) invert(1);
}
.ht-nav-sram-link:hover .ht-nav-sram-img { opacity:1; }

.ht-nav-actions { display:flex; align-items:center; gap:10px; margin-left:20px; }
.ht-nav-user {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(244,242,238,0.55);
}

/* Buttons */
.ht-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  line-height: 1;
}
.ht-btn-primary {
  background: var(--red);
  color: var(--white);
}
.ht-btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(234,40,31,0.35);
}
.ht-btn-outline {
  background: transparent;
  color: rgba(244,242,238,0.7);
  border: 1px solid rgba(244,242,238,0.2);
}
.ht-btn-outline:hover {
  border-color: rgba(244,242,238,0.55);
  color: var(--white);
}
.ht-btn-ghost-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
  padding: 12px 32px;
  font-size: 13px;
}
.ht-btn-ghost-dark:hover {
  background: var(--black);
  color: var(--white);
}
.ht-btn-red-lg {
  background: var(--red);
  color: var(--white);
  padding: 16px 44px;
  font-size: 14px;
  letter-spacing: 2px;
}
.ht-btn-red-lg:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(234,40,31,0.4);
}

/* Hamburger */
.ht-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
}
.ht-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: all var(--t) var(--ease);
}

/* =====================================================
   MOBILE FULL-SCREEN MENU
   ===================================================== */
.ht-mmenu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1100;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 48px;
  gap: 4px;
}
.ht-mmenu.open { display:flex; }
.ht-mmenu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity var(--t);
}
.ht-mmenu-close:hover { opacity:1; }
.ht-mmenu a {
  font-family: var(--ff-display);
  font-size: clamp(40px, 10vw, 64px);
  letter-spacing: 2px;
  color: rgba(244,242,238,0.55);
  line-height: 1.15;
  transition: color var(--t);
}
.ht-mmenu a:hover { color:var(--red); }
.ht-mmenu-sep {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 20px 0;
}
.ht-mmenu-cta { margin-top:8px; }

/* =====================================================
   FLASH / MESSAGES
   ===================================================== */
.message {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid;
  background: rgba(234,40,31,0.08);
  border-color: var(--red);
  color: #fca5a5;
  margin-bottom: 0;
}
.message.success {
  background: rgba(34,197,94,0.08);
  border-color: #22c55e;
  color: #86efac;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.ht-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  overflow: hidden;
  background: var(--black);
}
.ht-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 68px 68px;
  pointer-events: none;
}

.ht-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 15%, rgba(234,40,31,0.11) 0%, transparent 55%),
    radial-gradient(ellipse 35% 50% at 0% 80%,  rgba(160,60,20,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(20,10,8,0.8)   0%, transparent 70%),
    linear-gradient(155deg, #0f0d0c 0%, #130f0d 25%, #0d0d10 60%, #080808 100%);
}

/* Bicycle wheel decoration */
.ht-hero-wheel {
  position: absolute;
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  width: 58vw;
  height: 58vw;
  max-width: 860px;
  max-height: 860px;
  opacity: 0.072;
  pointer-events: none;
}
.ht-hero-wheel svg { width:100%; height:100%; }

.ht-hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 55% 45%;
  width: 100%;
  min-height: 100vh;
}

/* Left side — headline + brand manifesto */
.ht-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 56px 80px 80px;
}

.ht-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ht-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.ht-hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(72px, 9.5vw, 130px);
  line-height: 0.9;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 28px;
}
.ht-hero-headline em {
  font-style: italic;
  font-family: var(--ff-serif);
  color: var(--red);
  display: block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.ht-hero-headline em.rotating-out {
  opacity: 0;
  transform: translateY(-12px);
}
.ht-hero-headline em.rotating-in {
  opacity: 0;
  transform: translateY(12px);
}
.ht-hero-headline em.rotating-visible {
  opacity: 1;
  transform: translateY(0);
}

.ht-hero-sub {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  color: rgba(244,242,238,0.55);
  max-width: 400px;
  line-height: 1.55;
  margin-bottom: 52px;
}

.ht-hero-scroll {
  position: absolute;
  bottom: 40px; left: 80px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(244,242,238,0.3);
}
.ht-hero-scroll-line {
  width: 48px; height: 1px;
  background: rgba(244,242,238,0.15);
  overflow: hidden;
  position: relative;
}
.ht-hero-scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  left: -100%;
  background: var(--red);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { left:-100%; }
  50%  { left:0%; }
  100% { left:100%; }
}

/* Right side — login card */
.ht-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 72px 80px 24px;
  position: relative;
}
.ht-hero-right-glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,40,31,0.14) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(56px);
  pointer-events: none;
}

.ht-login-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 52px 48px;
  position: relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
.ht-login-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--red), rgba(234,40,31,0.4));
}

/* Corner bracket accents */
.ht-card-corner {
  position: absolute;
  width: 18px; height: 18px;
  border-color: rgba(234,40,31,0.35);
  border-style: solid;
}
.ht-card-corner-tl {
  top: 10px; left: 10px;
  border-width: 1px 0 0 1px;
}
.ht-card-corner-br {
  bottom: 10px; right: 10px;
  border-width: 0 1px 1px 0;
}

/* Login card header with year */
.ht-login-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.ht-login-since {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
.ht-login-since-num {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.12);
  line-height: 1;
}
.ht-login-since-txt {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

.ht-login-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.ht-login-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 3.5vw, 48px);
  letter-spacing: 1px;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 14px;
}
.ht-login-note {
  font-size: 13px;
  color: rgba(244,242,238,0.38);
  margin-bottom: 32px;
  line-height: 1.5;
}

.ht-field { margin-bottom: 20px; }
.ht-field label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244,242,238,0.4);
  margin-bottom: 8px;
}
.ht-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 15px;
  outline: none;
  border-radius: 0;
  transition: border-color var(--t), background var(--t);
  -webkit-appearance: none;
}
.ht-input:focus {
  border-color: var(--red);
  background: rgba(234,40,31,0.04);
}
.ht-input::placeholder { color:rgba(244,242,238,0.22); }
.ht-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #1c1c24 inset;
  -webkit-text-fill-color: var(--white);
}

.ht-login-btn {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: 2.5px;
  cursor: pointer;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
  margin-top: 4px;
}
.ht-login-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(234,40,31,0.35);
}

.ht-login-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(244,242,238,0.35);
}
.ht-login-trust svg { color: rgba(234,40,31,0.6); flex-shrink: 0; }

.ht-login-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
  color: rgba(244,242,238,0.38);
  text-align: center;
  line-height: 1.6;
}
.ht-login-footer a {
  color: rgba(234,40,31,0.85);
  transition: color var(--t);
}
.ht-login-footer a:hover { color:var(--red); }

/* =====================================================
   BRANDS — Featured grandes + Grid secundario con cajones
   ===================================================== */
.ht-brands {
  background: #fff;
  padding-bottom: 72px;
}

/* Banda encabezado — fondo muy claro con acento rojo */
.ht-brands-head-band {
  background: #fff;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.ht-brands-head-band::after {
  content: 'MARCAS';
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(120px, 15vw, 200px);
  line-height: 1;
  letter-spacing: -4px;
  color: rgba(234,40,31,0.06);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

/* Encabezado de sección */
.ht-brands-head {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 72px 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.ht-brands-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: -1px;
  color: var(--black);
  margin-top: 16px;
}
.ht-brands-subtitle {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,0.45);
  text-align: right;
}

/* Featured: SRAM + Leatt lado a lado */
.ht-brands-featured {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* ---- Brand card base ---- */
.ht-brand-card {
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 3px solid transparent;
  border-left: 4px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.2s;
  width: 100%;
  outline: 1px solid rgba(0,0,0,0.06);
}
.ht-brand-card:hover {
  border-bottom-color: rgba(234,40,31,0.35);
  border-left-color: rgba(234,40,31,0.5);
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  background: #fdfcfb;
}
.ht-brand-card.active {
  border-bottom-color: transparent;
  border-left-color: transparent;
  box-shadow: none;
  background: #f5f4f1;
}

/* Logo wrapper */
.ht-brand-card-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Featured card */
.ht-brand-card-lg {
  padding: 48px 40px;
}
.ht-brand-card-lg .ht-brand-card-logo {
  width: 200px;
  height: 96px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 14px 22px;
}
.ht-brand-card-lg .ht-brand-card-logo img {
  max-height: 76px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

/* Info: categoría + nombre */
.ht-brand-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ht-brand-card-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}
.ht-brand-card-name {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.93;
  letter-spacing: 0.5px;
  color: var(--black);
}

/* Chevron de apertura */
.ht-brand-card-chevron {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50%;
  color: #aaa;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              background 0.25s, color 0.25s, border-color 0.25s;
}
.ht-brand-card.active .ht-brand-card-chevron {
  transform: rotate(180deg);
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.ht-brand-card-fallback {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: 1px;
  color: #666;
}

/* ---- Cajón (drawer) ---- */
.ht-brand-drawer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
  background: #f5f4f1;
}
.ht-brand-drawer.open {
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.ht-brand-drawer-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 36px 72px 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ---- Grid secundario ---- */
.ht-brands-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2px 72px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

/* Cajón de fila: abarca todas las columnas */
.ht-row-drawer {
  grid-column: 1 / -1;
}

/* Small card */
.ht-brand-card-sm {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 14px 20px;
  border-bottom: 2px solid transparent;
}
.ht-brand-card-sm .ht-brand-card-logo {
  width: 100%;
  height: 60px;
  background: #fff;
}
.ht-brand-card-sm .ht-brand-card-logo img {
  max-height: 52px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
}
.ht-brand-card-sm-label {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 1px;
  color: #999;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: color 0.25s;
}
.ht-brand-card-sm:hover .ht-brand-card-sm-label,
.ht-brand-card-sm.active .ht-brand-card-sm-label {
  color: var(--black);
}

/* =====================================================
   STATS BAR
   ===================================================== */
.ht-stats {
  background: var(--red);
  position: relative;
  z-index: 1;
  border-bottom: 3px solid var(--red-dark);
}
.ht-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 100%;
}
.ht-stat {
  padding: 30px 36px;
  border-right: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ht-stat:last-child { border-right:none; }
.ht-stat-num {
  font-family: var(--ff-display);
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -1px;
}
.ht-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* =====================================================
   ABOUT / QUIÉNES SOMOS
   ===================================================== */
.ht-about {
  background: var(--white);
  color: var(--black);
  padding: 108px 0 96px;
  overflow: hidden;
  border-top: 4px solid var(--red);
}
.ht-about-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

/* Left — visual / typographic statement */
.ht-about-left { position:relative; }
.ht-about-ghost {
  position: absolute;
  font-family: var(--ff-display);
  font-size: clamp(130px, 20vw, 260px);
  line-height: 0.85;
  color: rgba(0,0,0,0.05);
  top: -24px; left: -24px;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}

.ht-about-vis { position:relative; z-index:1; }
.ht-section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ht-section-tag::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.ht-section-tag.light::before { background:var(--red); }

.ht-about-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.93;
  letter-spacing: -1px;
  color: var(--black);
  margin-bottom: 28px;
}
.ht-about-title em {
  font-style: italic;
  font-family: var(--ff-serif);
  color: var(--red);
  display: block;
}
/* Red underline accent on about headline */
.ht-about-vis::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-top: 24px;
  margin-bottom: 8px;
}

.ht-years-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 10px 22px;
}
.ht-years-tag strong {
  font-family: var(--ff-display);
  font-size: 46px;
  line-height: 1;
  color: var(--red);
}
.ht-years-tag span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Right — body text */
.ht-about-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ht-about-p {
  font-size: 16px;
  line-height: 1.82;
  color: #3a3a3a;
}
.ht-about-note {
  padding: 20px 24px;
  border-left: 3px solid var(--red);
  background: rgba(234,40,31,0.045);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.6;
}
.ht-about-actions { display:flex; gap:16px; align-items:center; flex-wrap:wrap; margin-top:8px; }

/* =====================================================
   BRANDS SHOWCASE — Contenido de cajones (galería de productos)
   ===================================================== */
/* Header: logo left + meta right, generous spacing */
.ht-sc-g-header {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}
.ht-sc-g-logo {
  width: 136px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}
.ht-sc-g-logo img {
  max-height: 46px;
  max-width: 108px;
  object-fit: contain;
}
.ht-sc-g-logo-text {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: #1a1a1a;
}
.ht-sc-g-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ht-sc-g-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888;
}
.ht-sc-g-name {
  font-family: var(--ff-display);
  font-size: clamp(36px, 3.6vw, 58px);
  letter-spacing: 1px;
  color: #0a0a0a;
  line-height: 0.95;
}
.ht-sc-g-desc {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Photo grid */
.ht-sc-g-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  flex: 1;
}
.ht-sc-g-photo {
  background: #fff;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.ht-sc-g-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}
.ht-sc-g-photo:hover img { transform: scale(1.06); }
.ht-sc-g-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ccc;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 48px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
}

/* CTA below photo grid */
.ht-sc-g-cta {
  padding-top: 16px;
  display: flex;
  align-items: center;
}
.ht-sc-g-cta-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.ht-sc-g-cta-link:hover {
  color: var(--red);
  border-color: var(--red);
}


/* =====================================================
   INSTAGRAM SECTION
   ===================================================== */
.ht-instagram {
  background: var(--black);
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ht-ig-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.ht-ig-title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 18px;
}
.ht-ig-desc {
  font-size: 15px;
  line-height: 1.78;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 360px;
}
.ht-btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.ht-btn-ig:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}
.ht-btn-ig svg { flex-shrink: 0; }

.ht-ig-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ht-ig-card {
  position: relative;
  background: #111118;
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px 18px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.ht-ig-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(234,40,31,0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}
.ht-ig-card:hover {
  background: #16161e;
  border-color: rgba(234,40,31,0.25);
}
.ht-ig-card:hover::before { opacity: 1; }

.ht-ig-card-body { position: relative; z-index: 1; }
.ht-ig-card-icon {
  width: 36px; height: 36px;
  color: rgba(234,40,31,0.45);
  margin-bottom: 14px;
  display: block;
  transition: color 0.3s;
}
.ht-ig-card:hover .ht-ig-card-icon { color: var(--red); }
.ht-ig-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244,242,238,0.38);
  margin-bottom: 4px;
}
.ht-ig-card-text {
  font-family: var(--ff-display);
  font-size: 16px;
  letter-spacing: 0.5px;
  color: rgba(244,242,238,0.7);
  line-height: 1.3;
}
.ht-ig-card-handle {
  position: relative;
  z-index: 1;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(244,242,238,0.2);
  transition: color 0.3s;
}
.ht-ig-card:hover .ht-ig-card-handle { color: rgba(234,40,31,0.6); }


/* =====================================================
   FAQ SECTION
   ===================================================== */
.ht-faq {
  background: var(--off-white);
  color: var(--black);
  padding: 100px 0 108px;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}
.ht-faq-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 96px;
  align-items: start;
}
.ht-faq-left { position: sticky; top: 100px; }
.ht-faq-headline {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5.5vw, 70px);
  line-height: 0.93;
  letter-spacing: -1px;
  color: var(--black);
  margin-top: 14px;
}
.ht-faq-sub {
  font-family: var(--ff-serif);
  font-size: 19px;
  font-style: italic;
  color: #777;
  margin-top: 20px;
  line-height: 1.6;
}

/* Accordion */
.ht-accord { display:flex; flex-direction:column; }
.ht-accord-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.ht-accord-item:first-child { border-top: 1px solid rgba(0,0,0,0.1); }
.ht-accord-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  gap: 16px;
  transition: color var(--t);
}
.ht-accord-q:hover { color:var(--red); }
.ht-accord-ico {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--red);
  transition: transform var(--t) var(--ease), border-color var(--t);
  line-height: 1;
}
.ht-accord-item.open .ht-accord-ico {
  transform: rotate(45deg);
  border-color: var(--red);
}
.ht-accord-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.ht-accord-body-inner {
  padding: 0 0 28px 0;
  font-size: 15px;
  line-height: 1.78;
  color: #555;
}
.ht-accord-body-inner strong { color:var(--black); }
.ht-accord-item.open .ht-accord-body { max-height: 500px; }

/* =====================================================
   CTA SECTION
   ===================================================== */
.ht-cta {
  background: var(--black);
  padding: 112px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ht-cta::before {
  content: 'MKR';
  position: absolute;
  font-family: var(--ff-display);
  font-size: clamp(200px, 40vw, 520px);
  color: rgba(255,255,255,0.018);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: -8px;
}
.ht-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}
.ht-cta-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.ht-cta-tag::before, .ht-cta-tag::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 64px; height: 1px;
  background: var(--red);
  opacity: 0.5;
}
.ht-cta-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.93;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}
.ht-cta-body {
  font-family: var(--ff-serif);
  font-size: 21px;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 44px;
  line-height: 1.6;
}
.ht-cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* =====================================================
   FOOTER
   ===================================================== */
.ht-footer {
  background: var(--dark);
  border-top: 3px solid var(--red);
  padding: 64px 0 36px;
}
.ht-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 80px;
}
.ht-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.ht-footer-brand-name {
  font-family: var(--ff-display);
  font-size: 40px;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 14px;
}
.ht-footer-brand-name em { font-style:normal; color:var(--red); }
.ht-footer-tagline {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.5;
}
.ht-footer-address {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(244,242,238,0.38);
}
.ht-footer-address a { transition:color var(--t); }
.ht-footer-address a:hover { color:rgba(244,242,238,0.7); }

.ht-footer-col-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(244,242,238,0.3);
  margin-bottom: 18px;
}
.ht-footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.ht-footer-links a {
  font-size: 14px;
  color: rgba(244,242,238,0.5);
  transition: color var(--t);
}
.ht-footer-links a:hover { color:var(--white); }

.ht-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ht-footer-copy {
  font-size: 12px;
  color: rgba(244,242,238,0.25);
  letter-spacing: 0.3px;
}

/* =====================================================
   INNER PAGE HERO (History, Contact)
   ===================================================== */
.ht-page-hero {
  padding: 160px 0 80px;
  background: white;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--red);
}
.ht-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(234,40,31,0.35), transparent);
}
.ht-page-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 80px;
}
.ht-page-hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ht-page-hero-tag::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.ht-page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(68px, 10vw, 136px);
  line-height: 0.88;
  letter-spacing: -2px;
  color: var(--white);
}
.ht-page-hero-title em {
  font-style: italic;
  font-family: var(--ff-serif);
  color: var(--red);
  display: block;
}
.ht-page-hero-sub {
  margin-top: 22px;
  font-size: 16px;
  color: rgba(244,242,238,0.45);
  max-width: 500px;
  line-height: 1.7;
}

/* =====================================================
   HISTORY PAGE
   ===================================================== */
.ht-history-lead {
  background: var(--black);
  padding: 80px 0;
  border-top: 1px solid rgba(234,40,31,0.25);
}
.ht-history-lead-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.ht-history-lead-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 0.95;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 24px;
}
.ht-history-lead-title em {
  font-style: italic;
  font-family: var(--ff-serif);
  color: var(--red);
}
.ht-history-lead-p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--gray);
}
.ht-history-lead-p + .ht-history-lead-p { margin-top:16px; }

/* Timeline */
.ht-timeline-section {
  background: var(--dark);
  padding: 80px 0 100px;
}
.ht-timeline-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 80px;
}
.ht-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}
.ht-timeline::before {
  content: '';
  position: absolute;
  top: 12px; bottom: 12px;
  left: 100px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(234,40,31,0.25) 8%, rgba(234,40,31,0.25) 92%, transparent);
}
.ht-tl-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  padding: 36px 0;
  position: relative;
}
.ht-tl-item::before {
  content: '';
  position: absolute;
  left: 94px; top: 44px;
  width: 13px; height: 13px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--dark);
}
.ht-tl-year {
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--red);
  padding-top: 40px;
}
.ht-tl-body { padding: 40px 0 40px 52px; }
.ht-tl-title {
  font-family: var(--ff-display);
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}
.ht-tl-text {
  font-size: 15px;
  line-height: 1.78;
  color: var(--gray);
}

/* Brands strip for history */
.ht-history-brands {
  background: var(--black);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.ht-brand-strip {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.05);
}
.ht-brand-strip-item {
  flex: 1 1 160px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.ht-brand-strip-item:hover { background: rgba(255,255,255,0.03); }
.ht-brand-strip-item img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.3s;
}
.ht-brand-strip-item:hover img { opacity:0.85; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.ht-contact-wrap {
  background: var(--dark);
  padding: 80px 0 110px;
}
.ht-contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 96px;
  align-items: start;
}
.ht-contact-sidebar-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 58px);
  line-height: 0.93;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 20px;
}
.ht-contact-sidebar-p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--gray);
  margin-bottom: 40px;
}
.ht-contact-detail { display:flex; flex-direction:column; gap:24px; }
.ht-cd-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.ht-cd-value {
  font-size: 15px;
  color: rgba(244,242,238,0.62);
  line-height: 1.6;
}

/* Contact Form */
.ht-cform {
  background: rgba(255,255,255,0.022);
  border: 1px solid var(--border);
  padding: 52px;
}
.ht-cform-title {
  font-family: var(--ff-display);
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 36px;
}
.ht-cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ht-cfield { margin-bottom: 20px; }
.ht-cfield label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244,242,238,0.38);
  margin-bottom: 8px;
}
.ht-cinput {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 15px;
  outline: none;
  border-radius: 0;
  transition: border-color var(--t), background var(--t);
  -webkit-appearance: none;
}
.ht-cinput:focus {
  border-color: var(--red);
  background: rgba(234,40,31,0.04);
}
.ht-cinput::placeholder { color:rgba(244,242,238,0.22); }
.ht-cselect {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 15px;
  outline: none;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  transition: border-color var(--t);
}
.ht-cselect:focus { border-color:var(--red); }
.ht-cselect option { background:#1c1c24; color:var(--white); }
.ht-ctextarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 15px;
  outline: none;
  border-radius: 0;
  resize: vertical;
  min-height: 120px;
  transition: border-color var(--t);
}
.ht-ctextarea:focus { border-color:var(--red); }
.ht-ctextarea::placeholder { color:rgba(244,242,238,0.22); }

.ht-csubmit {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: 2.5px;
  cursor: pointer;
  transition: background var(--t), box-shadow var(--t);
  margin-top: 4px;
}
.ht-csubmit:hover { background:var(--red-dark); box-shadow:0 8px 28px rgba(234,40,31,0.3); }

.ht-form-msg {
  display: none;
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 16px;
}
.ht-form-msg.show { display:block; }
.ht-form-msg.ok { background:rgba(34,197,94,0.1); border-left:3px solid #22c55e; color:#86efac; }
.ht-form-msg.err { background:rgba(234,40,31,0.1); border-left:3px solid var(--red); color:#fca5a5; }

/* =====================================================
   UTILITY
   ===================================================== */
.ht-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(234,40,31,0.35), transparent);
  max-width: 1240px;
  margin: 0 auto;
}
.ht-sr-only {
  position: absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border-width:0;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .ht-nav { padding: 0 28px; }
  .ht-hero-left { padding: 120px 36px 80px 44px; }
  .ht-hero-right { padding: 120px 44px 80px 24px; }
  .ht-about-inner,
  .ht-faq-inner,
  .ht-contact-inner,
  .ht-history-lead-inner { padding: 0 44px; gap:56px; }
  .ht-section-head { padding: 0 44px; }
  .ht-brands-grid { padding: 0 40px; }
  .ht-sc-head { padding: 64px 44px 44px; }
  .ht-ig-inner { padding: 0 44px; gap: 48px; }
  .ht-sc-marquee-label { padding: 0 44px; }
  .ht-timeline-inner,
  .ht-footer-inner,
  .ht-page-hero-inner,
  .ht-brand-strip,
  .ht-history-brands .ht-brand-strip { padding: 0 44px; }
  .ht-cform { padding: 36px; }
}

@media (max-width: 900px) {
  .ht-hero-content { grid-template-columns: 1fr; min-height: auto; }
  .ht-hero-left { padding: 120px 32px 40px; }
  .ht-hero-right { padding: 20px 32px 80px; justify-content:center; }
  .ht-hero-wheel { display:none; }
  .ht-login-card { max-width:100%; }

  .ht-about-inner { grid-template-columns:1fr; padding:0 32px; gap:40px; }
  .ht-about-ghost { display:none; }

  .ht-brands-grid { grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); padding:0 24px; }
  .ht-brand-cell.featured { grid-column: span 2; }
  .ht-sc-head { flex-direction: column; align-items: flex-start; padding: 48px 32px 36px; }
  .ht-sc-desc { text-align: left; max-width: none; }
  .ht-sc-layout { grid-template-columns: 240px 1fr; }
  .ht-sc-g-photos { grid-template-columns: repeat(2, 1fr); }
  .ht-ig-inner { grid-template-columns: 1fr; padding: 0 32px; }
  .ht-ig-right { grid-template-columns: repeat(3, 1fr); }
  .ht-ig-desc { max-width: none; }
  .ht-sc-marquee-label { padding: 0 32px; }

  .ht-faq-inner { grid-template-columns:1fr; padding:0 32px; gap:40px; }
  .ht-faq-left { position:static; }

  .ht-stats-row { grid-template-columns: repeat(2,1fr); }
  .ht-stat:nth-child(2) { border-right:none; }
  .ht-stat:nth-child(3),
  .ht-stat:nth-child(4) { border-top:1px solid rgba(255,255,255,0.18); }

  .ht-footer-grid { grid-template-columns:1fr; gap:40px; padding:0 0 44px; }
  .ht-footer-inner { padding:0 32px; }

  .ht-section-head { flex-direction:column; align-items:flex-start; padding:0 32px; }
  .ht-section-desc { text-align:left; max-width:none; }

  .ht-page-hero-inner { padding:0 32px; }
  .ht-history-lead-inner { grid-template-columns:1fr; padding:0 32px; gap:32px; }
  .ht-timeline-inner { padding:0 32px; }
  .ht-timeline::before { left:68px; }
  .ht-tl-item { grid-template-columns:68px 1fr; }
  .ht-tl-item::before { left:62px; }
  .ht-tl-body { padding:40px 0 40px 36px; }
  .ht-brand-strip { padding:0 32px; }

  .ht-contact-inner { grid-template-columns:1fr; padding:0 32px; }
  .ht-cform-row { grid-template-columns:1fr; }
  .ht-cform { padding:28px; }

  .ht-cta-actions { flex-direction:column; align-items:center; }
}

@media (max-width: 640px) {
  .ht-nav-links, .ht-nav-actions { display:none; }
  .ht-hamburger { display:flex; }

  .ht-hero-left { padding: 104px 24px 32px; }
  .ht-hero-right { padding: 16px 24px 64px; }
  .ht-hero-scroll { left:24px; }

  .ht-brands-grid { grid-template-columns: repeat(3,1fr); padding:0 16px; }
  .ht-brand-cell.featured { grid-column:span 2; }
  .ht-sc-head { padding: 36px 24px 28px; }
  .ht-sc-layout { grid-template-columns: 1fr; }
  .ht-sc-sidebar { max-height: 240px; flex-direction: row; flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ht-sc-brand { flex-shrink: 0; flex-direction: column; width: 100px; padding: 10px; border-left: none; border-bottom: 3px solid transparent; }
  .ht-sc-brand.active { border-bottom-color: var(--red); border-left-color: transparent; }
  .ht-sc-brand-info { display: none; }
  .ht-sc-brand-logo { width: 80px; height: 48px; }
  .ht-sc-g-photos { grid-template-columns: repeat(2, 1fr); }
  .ht-ig-inner { padding: 0 24px; }
  .ht-ig-right { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .ht-ig-card { padding: 16px 14px 12px; }
  .ht-ig-card-text { font-size: 13px; }
  .ht-sc-marquee-label { padding: 0 24px; }

  .ht-about-inner { padding:0 24px; }
  .ht-faq-inner { padding:0 24px; }
  .ht-section-head { padding:0 24px; }
  .ht-footer-inner { padding:0 24px; }
  .ht-page-hero-inner { padding:0 24px; }
  .ht-timeline-inner { padding:0 24px; }
  .ht-contact-inner { padding:0 24px; }
  .ht-brand-strip { padding:0 24px; }
  .ht-history-lead-inner { padding:0 24px; }

  .ht-tl-item { grid-template-columns:1fr; }
  .ht-timeline::before { display:none; }
  .ht-tl-item::before { display:none; }
  .ht-tl-year { padding-top:0; font-size:16px; }
  .ht-tl-body { padding:8px 0 36px; }

  .ht-stats-row { grid-template-columns:1fr 1fr; }
  .ht-cta { padding:80px 0; }
  .ht-about { padding:72px 0; }
  .ht-faq { padding:72px 0; }
}

/* =====================================================
   DESIGN REFRESH v2 — 2026-05 — PAGES CLARO
   · History / Contact: fondo claro en todas las secciones
   ===================================================== */

/* --- Page hero (historia + contacto) — foto aleatoria de fondo --- */
.ht-page-hero {
  background: #0a0a0a;
  border-top: none;
  border-bottom: none;
}
.ht-page-hero::after { display: none; }
.ht-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.ht-page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
.ht-page-hero-inner  { position: relative; z-index: 1; }
.ht-page-hero-title  { color: var(--white); }
.ht-page-hero-sub    { color: rgba(244,242,238,0.52); }

/* --- Historia: lead --- */
.ht-history-lead {
  background: var(--white);
  border-top: none;
}
.ht-history-lead-title       { color: var(--black); }
.ht-history-lead-title em    { color: var(--red); }
.ht-history-lead-p           { color: #4a4a4a; }

/* --- Historia: timeline --- */
.ht-timeline-section { background: var(--off-white); }
.ht-tl-item::before  { border-color: var(--off-white); }
.ht-tl-title         { color: var(--black); }
.ht-tl-text          { color: #555; }

/* --- Historia: brand strip --- */
.ht-history-brands {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.07);
}
.ht-brand-strip {
  border-color: rgba(0,0,0,0.06);
}
.ht-brand-strip-item {
  border-color: rgba(0,0,0,0.06);
}
.ht-brand-strip-item:hover { background: rgba(0,0,0,0.025); }
.ht-brand-strip-item img {
  filter: none;
  opacity: 0.55;
}
.ht-brand-strip-item:hover img { opacity: 0.9; filter: none; }

/* --- Contacto: wrapper y sidebar --- */
.ht-contact-wrap             { background: var(--off-white); }
.ht-contact-sidebar-title    { color: var(--black); }
.ht-contact-sidebar-p        { color: #4a4a4a; }
.ht-cd-value                 { color: rgba(0,0,0,0.6); }

/* --- Contacto: formulario --- */
.ht-cform {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}
.ht-cform-title { color: var(--black); }
.ht-cfield label { color: rgba(0,0,0,0.4); }
.ht-cinput,
.ht-cselect,
.ht-ctextarea {
  background: #f7f6f3;
  border-color: rgba(0,0,0,0.12);
  color: var(--black);
}
.ht-cinput:focus,
.ht-cselect:focus,
.ht-ctextarea:focus {
  background: #fff;
  border-color: var(--red);
}
.ht-cinput::placeholder,
.ht-ctextarea::placeholder { color: rgba(0,0,0,0.25); }
.ht-cselect option { background: #fff; color: var(--black); }
.ht-form-msg.ok  { background: rgba(34,197,94,0.08); color: #166534; }
.ht-form-msg.err { background: rgba(234,40,31,0.07); color: #b91c1c; }

/* =====================================================
   DESIGN REFRESH v2 — 2026-05
   · Nav: rojo sólido siempre (no transparente)
   · Instagram: fondo claro
   · CTA: fondo claro
   ===================================================== */

/* --- Navegación: siempre roja --- */
.ht-nav {
  background: var(--red);
  border-bottom: 1px solid var(--red-dark);
}
.ht-nav.scrolled {
  background: var(--red-dark);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(0,0,0,0.2);
}
.ht-nav-links a {
  color: rgba(255,255,255,0.78);
}
.ht-nav-links a:hover,
.ht-nav-links a.active {
  color: #fff;
}
.ht-nav-links a::after {
  background: rgba(255,255,255,0.6);
}
.ht-nav-sram-img {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.ht-nav-sram-link:hover .ht-nav-sram-img { opacity: 1; }
.ht-nav-user { color: rgba(255,255,255,0.65); }
.ht-nav .ht-btn-primary {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  box-shadow: none;
}
.ht-nav .ht-btn-primary:hover {
  background: rgba(0,0,0,0.36);
  transform: none;
  box-shadow: none;
}
.ht-nav .ht-btn-outline {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.28);
}
.ht-nav .ht-btn-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
/* Hamburger lines: blancas sobre fondo rojo */
.ht-hamburger span {
  background: #fff;
}

/* --- Instagram: fondo claro --- */
.ht-instagram {
  background: var(--off-white);
  border-top: 4px solid var(--red);
  border-bottom: none;
}
.ht-ig-title { color: var(--black); }
.ht-ig-desc  { color: #4a4a4a; }
.ht-ig-left .ht-section-tag { color: var(--red); }
.ht-btn-ig {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.2);
  color: var(--black);
}
.ht-btn-ig:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.4);
  color: var(--black);
}
.ht-ig-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}
.ht-ig-card::before {
  background: radial-gradient(ellipse at top left, rgba(234,40,31,0.06) 0%, transparent 65%);
}
.ht-ig-card:hover {
  background: #f7f5f0;
  border-color: rgba(234,40,31,0.2);
}
.ht-ig-card-icon { color: rgba(234,40,31,0.5); }
.ht-ig-card:hover .ht-ig-card-icon { color: var(--red); }
.ht-ig-card-tag  { color: rgba(0,0,0,0.4); }
.ht-ig-card-text { color: rgba(0,0,0,0.78); }
.ht-ig-card-handle { color: rgba(0,0,0,0.22); }
.ht-ig-card:hover .ht-ig-card-handle { color: var(--red); }

/* --- CTA final: fondo claro --- */
.ht-cta {
  background: var(--white);
  border-top: 4px solid var(--red);
}
.ht-cta::before {
  color: rgba(0,0,0,0.04);
}
.ht-cta-tag {
  color: var(--red);
}
.ht-cta-tag::before,
.ht-cta-tag::after {
  background: var(--red);
  opacity: 0.4;
}
.ht-cta-title { color: var(--black); }
.ht-cta-body  { color: #555; }
.ht-cta .ht-btn-outline {
  color: var(--black);
  border-color: rgba(0,0,0,0.2);
}
.ht-cta .ht-btn-outline:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.45);
  color: var(--black);
}

/* =====================================================
   BRANDS RESPONSIVE — sobreescribe reglas anteriores
   ===================================================== */
@media (max-width: 1100px) {
  .ht-brands-head,
  .ht-brands-featured,
  .ht-brands-grid { padding-left: 44px; padding-right: 44px; }
  .ht-brand-drawer-body { padding: 28px 44px 36px; }
}

@media (max-width: 900px) {
  .ht-brands-head {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 32px 36px;
  }
  .ht-brands-subtitle { text-align: left; max-width: none; }
  .ht-brands-featured {
    grid-template-columns: 1fr;
    padding: 0 32px;
  }
  .ht-brands-grid {
    grid-template-columns: repeat(5, 1fr);
    padding: 2px 32px 0;
  }
  .ht-brand-card-lg { padding: 32px 28px; }
  .ht-brand-card-lg .ht-brand-card-logo { width: 140px; height: 72px; }
  .ht-brand-card-name { font-size: clamp(22px, 5vw, 36px); }
  .ht-brand-drawer-body { padding: 24px 32px 32px; }
  .ht-sc-g-photos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .ht-brands-head { padding: 40px 24px 28px; }
  .ht-brands-featured { padding: 0 24px; }
  .ht-brands-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 2px 24px 0;
  }
  .ht-brand-card-lg { padding: 22px 20px; gap: 16px; flex-wrap: wrap; }
  .ht-brand-card-lg .ht-brand-card-logo { width: 110px; height: 60px; }
  .ht-brand-card-lg .ht-brand-card-name { font-size: 26px; }
  .ht-brand-card-sm { padding: 18px 8px 14px; gap: 8px; }
  .ht-brand-card-sm .ht-brand-card-logo { height: 40px; }
  .ht-brand-card-sm .ht-brand-card-logo img { max-height: 30px; }
  .ht-brand-card-sm-label { font-size: 10px; }
  .ht-brand-drawer-body { padding: 20px 24px 28px; }
  .ht-sc-g-photos { grid-template-columns: repeat(2, 1fr); }
}
