/* =========================================================================
   Airless.mx — Design System (editorial F)
   Sistema completo: tokens, base, componentes y secciones para todo el sitio.
   ========================================================================= */

/* ============= Tokens ============= */
:root {
  /* Color */
  --bg:          #FBFBF9;
  --bg-paper:    #F2F3EE;
  --bg-chip:     #ECEDE7;
  --bg-ink:      #0E1418;
  --bg-ink-2:    #1A2026;
  --fg:          #0E1418;
  --fg-dim:      #3C434A;
  --muted:       #5C6469;
  --muted-dim:   #8A9095;
  --muted-ink:   #9CA3A9;
  --hairline:    #E3E5DF;
  --hairline-2:  #D2D5CE;
  --hairline-ink:#262C33;
  --accent:      #0FB8A6;
  --accent-2:    #14C5B0;
  --accent-deep: #0B8F80;
  --accent-soft: #E5F7F4;
  --warn:        #C7472B;
  --ok:          #0FB8A6;

  /* Type */
  --f-display: 'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Radii */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-pill: 999px;

  /* Shadow */
  --sh-card: 0 1px 0 rgba(14,20,24,0.04), 0 18px 40px -22px rgba(14,20,24,0.18);
  --sh-card-hover: 0 1px 0 rgba(14,20,24,0.05), 0 30px 60px -22px rgba(14,20,24,0.28);
  --sh-pop: 0 14px 32px -10px rgba(14,20,24,0.25);
  --sh-accent: 0 12px 28px -12px rgba(15,184,166,0.55);

  /* Layout */
  --container: 1360px;
  --gutter: 40px;
}

/* ============= Base ============= */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--fg);
  font-family: var(--f-body);
  font-size: 16px; line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============= Container ============= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

/* ============= Typography ============= */
.h-display {
  font-family: var(--f-display);
  font-weight: 700; letter-spacing: -0.045em;
  line-height: 0.92; color: var(--fg);
  margin: 0; text-wrap: balance;
}
.h-display em {
  font-style: italic; font-weight: 500;
  color: var(--accent);
  display: inline-block; position: relative;
}
.h-display em::after {
  content: ""; position: absolute; left: 4px; right: 4px;
  bottom: 6px; height: 8px;
  background: var(--accent-soft);
  z-index: -1; border-radius: 2px;
  opacity: 0.6;
}
.deck {
  font-family: var(--f-display); font-style: italic;
  font-size: 19px; font-weight: 500; line-height: 1.4;
  color: var(--accent-deep); letter-spacing: -0.005em;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.eyebrow .bar { width: 28px; height: 1px; background: var(--accent); }
.eyebrow .num {
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; padding: 4px 10px;
  color: var(--accent-deep); background: var(--accent-soft);
  border: 1px solid rgba(15,184,166,0.3); border-radius: 4px;
}

.lede { font-size: 17px; line-height: 1.6; color: var(--fg-dim); max-width: 60ch; }
.lede .dropcap {
  float: left; font-family: var(--f-display);
  font-size: 76px; line-height: 0.82;
  font-weight: 700; color: var(--accent);
  margin-right: 12px; margin-top: 6px; margin-bottom: -4px;
  letter-spacing: -0.04em;
}
.muted { color: var(--muted); }
.mono  { font-family: var(--f-mono); }

/* ============= Logo ============= */
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700;
  font-size: 26px; letter-spacing: -0.025em; line-height: 1;
  color: var(--fg); text-transform: none;
}
.logo .dotmx { color: var(--accent); font-size: 16px; font-weight: 600; }
.logo--ink { color: #FAFAF7; }
.logo--ink .dotmx { color: var(--accent); }

/* ============= Util bar + Nav (Opción A) ============= */
.util-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px var(--gutter);
  background: #F4F5F1;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.06em; color: var(--muted);
}
.util-bar .util-l, .util-bar .util-r { display: flex; align-items: center; gap: 14px; }
.util-bar .util-sep { opacity: 0.4; }
.util-bar b { color: var(--fg); font-weight: 700; }
.util-bar .util-live { display: inline-flex; align-items: center; gap: 8px; }
.util-bar .util-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: pulse-soft 2.4s ease-in-out infinite;
}

.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px var(--gutter); gap: 32px;
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
  position: sticky; top: 0; z-index: 50;
}
.nav .logo-link { display: block; flex-shrink: 0; }
.nav-links { display: flex; gap: 4px; font-size: 14px; font-weight: 500; }
.nav-links a {
  padding: 10px 18px; border-radius: var(--r-sm);
  position: relative; opacity: 0.78; color: var(--fg);
  transition: opacity 0.2s, background 0.2s;
}
.nav-links a:hover { opacity: 1; background: rgba(15,184,166,0.08); }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 4px;
  height: 2px; background: var(--accent); border-radius: 1px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  width: 40px; height: 40px; border: 1px solid var(--hairline);
  background: transparent; border-radius: var(--r-md);
  display: grid; place-items: center; color: var(--fg);
  transition: border-color 0.2s, background 0.2s;
}
.icon-btn:hover { border-color: var(--accent); background: var(--accent-soft); }

.burger {
  display: none;
  width: 40px; height: 40px; border: 1px solid var(--hairline);
  background: transparent; border-radius: var(--r-md);
  color: var(--fg); cursor: pointer; place-items: center;
}
.mobile-nav {
  display: none;
  flex-direction: column; padding: 8px var(--gutter) 20px;
  background: var(--bg); border-bottom: 1px solid var(--hairline);
}
.mobile-nav a {
  padding: 14px 4px; font-size: 16px;
  border-bottom: 1px solid var(--hairline); color: var(--fg);
}
.mobile-nav .nav-cta-mobile { margin-top: 16px; }
body.mobile-open .mobile-nav { display: flex; }

/* ============= Buttons ============= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 13px 20px;
  font-family: var(--f-body); font-weight: 600; font-size: 14px;
  letter-spacing: 0.005em; border-radius: var(--r-md);
  border: 0; cursor: pointer;
  transition: transform 0.18s, filter 0.18s, background 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 15px 24px; font-size: 15px; }
.btn-sm { padding: 9px 14px; font-size: 13px; }
.btn-full { width: 100%; }

.btn-wa {
  background: var(--accent); color: #fff;
  box-shadow: var(--sh-accent); font-weight: 700;
}
.btn-wa:hover { background: var(--accent-2); }
.btn-primary { background: var(--fg); color: #fff; font-weight: 600; }
.btn-primary:hover { background: var(--bg-ink-2); }
.btn-ghost {
  background: transparent; color: var(--fg);
  border: 1px solid var(--hairline-2);
}
.btn-ghost:hover { border-color: var(--fg); background: rgba(0,0,0,0.02); }
.btn-ghost-ink {
  background: transparent; color: #FAFAF7;
  border: 1px solid var(--hairline-ink);
}
.btn-ghost-ink:hover { border-color: #FAFAF7; background: rgba(255,255,255,0.04); }
.btn-link {
  background: transparent; color: var(--accent);
  padding: 6px 0; border-bottom: 1px solid var(--accent);
  border-radius: 0; gap: 6px;
}
.btn-link:hover { color: var(--accent-deep); border-color: var(--accent-deep); filter: none; transform: none; }

/* ============= Section primitive ============= */
.section { padding: 96px 0; border-top: 1px solid var(--hairline); }
.section--ink { background: var(--bg-ink); color: #FAFAF7; border-top: 0; }
.section--paper { background: var(--bg-paper); }
.section--tight { padding: 64px 0; }
.section-head { margin-bottom: 56px; display: grid; gap: 28px; }
.section-head--split { grid-template-columns: 1fr 1fr; align-items: end; }
.section-head h2 {
  font-family: var(--f-display);
  font-size: 56px; line-height: 0.98; letter-spacing: -0.035em;
  font-weight: 600; margin: 0;
}

/* ============= Hero (landing & sub-heroes) ============= */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  border-top: 1px solid var(--hairline);
  min-height: 720px;
}
.hero .editorial {
  padding: 60px 56px 32px;
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px;
}
.hero h1 { font-size: 96px; }
.hero .photo-col {
  position: relative; background: var(--bg-paper);
  padding: 48px 48px 32px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.folio { position: absolute; top: 28px; right: 36px; text-align: right; z-index: 1; pointer-events: none; }
.folio .n {
  font-family: var(--f-display); font-size: 132px;
  font-weight: 700; color: rgba(14,20,24,0.06);
  letter-spacing: -0.05em; line-height: 0.85;
}
.folio .l {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.18em;
  font-weight: 600; margin-top: -10px; display: block;
}

.photo-frame {
  position: relative; flex: 1;
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-md); overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 60px -30px rgba(14,20,24,0.18);
  min-height: 360px;
}
.photo-frame image-slot,
.photo-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  --slot-bg: transparent; --slot-border: 0;
}
.spec-tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 12px; background: rgba(255,255,255,0.94);
  border: 1px solid var(--hairline); border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  backdrop-filter: blur(8px);
  font-family: var(--f-mono); font-size: 11px; color: var(--fg-dim);
}
.spec-tag .v { color: var(--fg); font-weight: 700; }
.spec-tag .sep { color: var(--muted-dim); }

.cutline {
  margin-top: 14px; padding: 10px 14px;
  border-left: 2px solid var(--accent);
  font-family: var(--f-body); font-size: 13px;
  color: var(--muted); line-height: 1.5;
  background: rgba(15,184,166,0.04);
  border-radius: 0 4px 4px 0;
}
.cutline strong { color: var(--fg); font-weight: 600; }

/* Sub-hero variant (interior pages — más compacto) */
.sub-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hairline);
  background: var(--bg);
}
.sub-hero .editorial { padding: 56px var(--gutter); border-right: 1px solid var(--hairline); }
.sub-hero h1 { font-size: 76px; }
.sub-hero .photo-col { padding: 40px; min-height: 360px; }

/* ============= Stats / counters ============= */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.stat { border-left: 1px solid var(--hairline); padding: 0 18px; }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-v {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--f-display); font-size: 36px;
  font-weight: 700; color: var(--fg);
  letter-spacing: -0.025em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-v .u { font-size: 13px; color: var(--accent); font-weight: 600; }
.stat-l {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--muted); margin-top: 6px;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.stats--ink .stat { border-left-color: var(--hairline-ink); }
.stats--ink .stat-v { color: #FAFAF7; }
.stats--ink .stat-l { color: var(--muted-ink); }

/* Trust strip (multi-col mono metadata) */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding-top: 28px; border-top: 1px solid var(--hairline);
  font-family: var(--f-mono); font-size: 10px;
  color: var(--muted); letter-spacing: 0.06em;
}
.trust .col .k { color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 6px; font-weight: 600; }
.trust .col .v { font-family: var(--f-mono); font-size: 12px; color: var(--fg); font-weight: 600; letter-spacing: 0.02em; }
.trust--ink { border-top-color: var(--hairline-ink); color: var(--muted-ink); }
.trust--ink .col .k { color: var(--muted-ink); }
.trust--ink .col .v { color: #FAFAF7; }

/* ============= Card (Equipment / Generic) ============= */
.card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform 0.25s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-3px); border-color: rgba(15,184,166,0.4); box-shadow: var(--sh-card-hover); }
.card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.card-head .brand-tag {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--muted); text-transform: uppercase; font-weight: 600;
}
.card-head h3 {
  font-family: var(--f-display); font-size: 24px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--fg); margin: 6px 0 4px;
}
.card-head .sub { font-size: 13px; color: var(--muted); }
.card .badge {
  background: var(--accent-soft); color: var(--accent-deep);
  padding: 4px 10px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  white-space: nowrap;
}

.card-img {
  position: relative; aspect-ratio: 5/3;
  border-radius: var(--r-md); overflow: hidden;
  background: linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-chip) 100%);
  border: 1px solid var(--hairline);
}
.card-img image-slot, .card-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  --slot-bg: transparent; --slot-border: 0;
  object-fit: cover;
}
.card-img .img-label {
  position: absolute; left: 12px; top: 12px; z-index: 3;
  padding: 4px 8px; background: rgba(255,255,255,0.94);
  border: 1px solid var(--hairline); border-radius: 4px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em;
  color: var(--fg-dim); text-transform: uppercase; font-weight: 600;
}

.card-desc { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }

.spec-table {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--hairline);
  margin-top: auto;
}
.spec-table .row {
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}
.spec-table .row:nth-child(odd) { border-right: 1px solid var(--hairline); padding-right: 14px; }
.spec-table .row:nth-child(even) { padding-left: 14px; }
.spec-table .row:nth-last-child(-n+2) { border-bottom: 0; }
.spec-table .k {
  font-family: var(--f-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); font-weight: 600;
}
.spec-table .v {
  font-family: var(--f-mono); font-size: 14px; font-weight: 600;
  color: var(--fg); margin-top: 2px;
}

.card-actions { display: flex; gap: 8px; }
.card-actions .btn { flex: 1; }

/* ============= Category card (Accesorios) ============= */
.cat-card {
  display: block; background: #fff;
  padding: 28px;
  text-decoration: none; color: var(--fg);
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  min-height: 220px;
}
.cat-card:hover { background: #FBFBF8; }
.cat-card:hover .cat-arrow { background: var(--accent); color: #fff; border-color: var(--accent); transform: translate(2px, -2px); }
.cat-card .cat-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--fg);
  margin-bottom: 24px;
}
.cat-card .cat-name {
  font-family: var(--f-display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; margin: 0 0 6px;
}
.cat-card .cat-desc { font-size: 13px; line-height: 1.5; color: var(--muted); margin: 0; }
.cat-card .cat-meta {
  position: absolute; right: 24px; top: 28px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.06em;
}
.cat-arrow {
  position: absolute; right: 20px; bottom: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--hairline);
  display: grid; place-items: center; color: var(--fg);
  transition: all 0.2s;
}

/* ============= Service cards (dark) ============= */
.serv-card {
  background: var(--bg-ink-2);
  border: 1px solid var(--hairline-ink);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.25s, border-color 0.25s;
  height: 100%;
}
.serv-card:hover { transform: translateY(-3px); border-color: rgba(15,184,166,0.5); }
.serv-card .icon-wrap {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(15,184,166,0.14); color: var(--accent);
  display: grid; place-items: center;
}
.serv-card h3 {
  font-family: var(--f-display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.015em; margin: 0; color: #FAFAF7;
}
.serv-card p { font-size: 14px; line-height: 1.55; color: var(--muted-ink); margin: 0; }
.serv-card .check-list { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 8px; }
.serv-card .check-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #FAFAF7; }
.serv-card .check-list .pill {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(15,184,166,0.16); color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}

/* ============= Process timeline ============= */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process .step {
  padding: 32px 28px 32px 0;
  border-left: 1px solid var(--hairline-ink);
  padding-left: 28px;
  position: relative;
}
.process .step:first-child { border-left: 0; padding-left: 0; }
.process .step .n {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-mono); font-size: 13px; font-weight: 700;
  margin-bottom: 20px;
  background: transparent; border: 1px solid var(--hairline-ink);
  color: var(--accent);
}
.process .step.active .n { background: var(--accent); color: #fff; border-color: var(--accent); }
.process .step h4 {
  font-family: var(--f-display); font-size: 18px; font-weight: 600;
  color: #FAFAF7; margin: 0 0 8px;
}
.process .step p { font-size: 13px; line-height: 1.55; color: var(--muted-ink); margin: 0; }

/* ============= Activity ticker ============= */
.ticker {
  font-family: var(--f-mono); font-size: 12px;
  border-top: 1px solid var(--hairline); padding-top: 16px;
  margin-top: 24px;
}
.ticker-h {
  display: flex; justify-content: space-between; margin-bottom: 12px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.ticker-row {
  display: grid; grid-template-columns: 70px 110px 1fr;
  gap: 14px; padding: 4px 0;
  border-bottom: 1px dashed var(--hairline);
  color: var(--muted);
}
.ticker-row:last-child { border-bottom: 0; }
.ticker-row .tag { color: var(--fg); font-weight: 600; }
.ticker-row .state { font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.ticker-row .state.listo { color: var(--accent-deep); }
.ticker-row .state.diagnostico { color: var(--fg-dim); }
.ticker-row .state.reparacion { color: var(--warn); }

/* ============= Brand marquee ============= */
.brands {
  border-top: 1px solid var(--hairline);
  padding: 18px 0; overflow: hidden; background: var(--bg);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.brands-track {
  display: flex; gap: 56px; align-items: center;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.brands-track .brand {
  font-family: var(--f-display); font-size: 26px;
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--fg-dim);
}
.brands-track .sep { color: var(--accent); font-family: var(--f-mono); font-size: 14px; }

/* ============= Logo wrapper ============= */
.logo-link {
  display: inline-flex; align-items: center;
  text-decoration: none;
}
.logo-link img { display: block; }

/* ============= Video showcase ============= */
.video-section { padding: 96px 0; border-top: 1px solid var(--hairline); background: var(--bg-paper); }
.video-grid {
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 16px;
  margin-top: 48px;
}
.video-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-ink);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  aspect-ratio: 16/9;
}
.video-card.main { aspect-ratio: 16/10; }
.video-card.video-active .video-meta { display: none; }
.video-card:hover { transform: translateY(-2px); box-shadow: var(--sh-card-hover); }
.video-card:hover .video-play { background: var(--accent); transform: translate(-50%, -50%) scale(1.08); }
.video-card .poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block; object-fit: cover; object-position: center;
  filter: brightness(0.85);
  transition: filter 0.3s, transform 0.4s;
}
.video-card:hover .poster { filter: brightness(0.78); transform: scale(1.02); }
.video-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 45%; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 45%, transparent 100%);
}
.video-play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid; place-items: center;
  border: 0; cursor: pointer; color: var(--fg);
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 14px 40px -10px rgba(0,0,0,0.4);
  z-index: 2;
}
.video-play:hover { background: var(--accent); color: #fff; }
.video-card.small .video-play { width: 48px; height: 48px; }
.video-meta {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
  color: #fff; pointer-events: none;
  z-index: 2;
}
.video-meta .tag {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-2);
  background: rgba(0,0,0,0.5); padding: 4px 10px;
  border-radius: 4px; backdrop-filter: blur(8px);
  font-weight: 700;
}
.video-meta .dur {
  font-family: var(--f-mono); font-size: 11px;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.5); padding: 4px 8px;
  border-radius: 4px; backdrop-filter: blur(8px);
}
.video-meta .title {
  font-family: var(--f-display); font-weight: 600; font-size: 18px;
  letter-spacing: -0.015em; color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}
.video-card.small .video-meta .title { font-size: 14px; }
.video-aside { display: flex; flex-direction: column; gap: 16px; }

/* ============= Gallery (editorial photo strip) ============= */
.gallery-section { padding: 96px 0; border-top: 1px solid var(--hairline); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
  height: 540px;
}
.gallery-grid figure {
  margin: 0; position: relative;
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--bg-paper);
}
.gallery-grid figure:nth-child(1) { grid-row: 1 / 3; }
.gallery-grid figure:nth-child(4) { grid-column: 2 / 4; }
.gallery-grid figure img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1);
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  position: absolute; left: 12px; bottom: 12px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--accent);
  padding: 6px 10px; border-radius: 0 4px 4px 0;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim); font-weight: 600;
  backdrop-filter: blur(8px);
}
.gallery-grid figcaption .fig { color: var(--accent-deep); font-weight: 700; }

@media (max-width: 1024px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-aside { flex-direction: row; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; height: auto; }
  .gallery-grid figure:nth-child(1) { grid-row: 1; grid-column: 1 / 3; aspect-ratio: 16/9; }
  .gallery-grid figure:nth-child(4) { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .gallery-grid figure:nth-child(2), .gallery-grid figure:nth-child(3) { aspect-ratio: 4/3; }
}
@media (max-width: 720px) {
  .video-aside { flex-direction: column; }
  .video-section, .gallery-section { padding: 56px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure:nth-child(1), .gallery-grid figure:nth-child(4) { grid-column: 1; }
}

/* ============= Footer ============= */
.footer {
  background: var(--bg-ink); color: #FAFAF7;
  padding: 80px 0 28px;
}

/* --- Help block (3 cards + direct ribbon) --- */
.footer-help { padding-bottom: 56px; border-bottom: 1px solid var(--hairline-ink); }
.footer-help-head { margin-bottom: 32px; max-width: 720px; }
.footer-help-title {
  font-family: var(--f-display); font-size: 48px; line-height: 1; font-weight: 600;
  letter-spacing: -0.03em; margin: 16px 0 12px; color: #FAFAF7; text-wrap: balance;
}
.footer-help-title em {
  font-style: italic; font-weight: 500; color: var(--accent);
  display: inline-block; position: relative;
}
.footer-help-title em::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 6px;
  height: 7px; background: rgba(15,184,166,0.18); z-index: -1; border-radius: 2px;
}
.footer-help-lede {
  font-size: 16px; line-height: 1.55;
  color: var(--muted-ink); margin: 0; max-width: 600px;
}

.footer-help-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--hairline-ink);
  border: 1px solid var(--hairline-ink);
  border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 20px;
}
.footer-help-card {
  display: flex; gap: 18px; padding: 24px;
  background: var(--bg-ink-2);
  text-decoration: none; color: #FAFAF7;
  transition: background 0.2s ease;
}
.footer-help-card:hover { background: #20262C; }
.footer-help-card:hover .footer-help-link { color: var(--accent-2); gap: 10px; }
.footer-help-num {
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.14em;
  border-right: 1px solid var(--hairline-ink); padding-right: 18px;
  flex-shrink: 0;
}
.footer-help-text h3 {
  font-family: var(--f-display); font-size: 20px; font-weight: 600;
  letter-spacing: -0.015em; margin: 0 0 6px; color: #FAFAF7;
}
.footer-help-text p {
  font-size: 13px; line-height: 1.5; color: var(--muted-ink);
  margin: 0 0 12px;
}
.footer-help-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); transition: color 0.2s, gap 0.2s;
}

/* Direct WhatsApp ribbon */
.footer-direct {
  background: var(--bg-ink-2); border: 1px solid var(--hairline-ink);
  border-radius: var(--r-lg); padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.footer-direct-l { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-direct-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  animation: pulse-soft 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.footer-direct strong { color: #FAFAF7; font-size: 15px; font-weight: 600; }
.footer-direct-meta { color: var(--muted-ink); font-size: 13px; }

/* --- Columns --- */
.footer-cols {
  display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px;
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--hairline-ink);
}
.footer-col .col-title {
  font-family: var(--f-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent); font-weight: 700;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline-ink);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px; color: #FAFAF7; opacity: 0.72;
  transition: opacity 0.2s, color 0.2s; text-decoration: none;
}
.footer-col ul a:hover { color: var(--accent); opacity: 1; }
.footer-brand .blurb {
  font-size: 14px; line-height: 1.6; color: var(--muted-ink);
  margin: 20px 0 24px; max-width: 320px;
}
.footer-brand .blurb strong { color: #FAFAF7; font-weight: 600; }
.footer-contact {
  display: flex; flex-direction: column; gap: 12px;
  font-size: 13px; color: var(--muted-ink); line-height: 1.5;
}
.footer-contact .row {
  display: flex; gap: 10px; align-items: flex-start;
  padding-top: 8px; border-top: 1px dashed var(--hairline-ink);
}
.footer-contact .row:first-child { border-top: 0; padding-top: 0; }
.footer-contact .row .ic { color: var(--accent); display: inline-flex; margin-top: 2px; flex-shrink: 0; }

/* --- Bottom strip --- */
.footer-bottom {
  padding-top: 24px;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center;
  font-size: 12px; color: var(--muted-ink);
}
.footer-bottom-l { text-align: left; }
.footer-bottom-c { display: flex; gap: 24px; justify-content: center; }
.footer-bottom-r { display: flex; gap: 12px; justify-content: flex-end; align-items: center; }
.footer-bottom a { color: var(--muted-ink); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-r a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--hairline-ink);
  display: grid; place-items: center; color: var(--muted-ink);
}
.footer-bottom-r a:hover { color: var(--accent); border-color: var(--accent); }

/* ============= Animations ============= */
@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15,184,166,0.55); transform: scale(1); }
  50% { box-shadow: 0 0 0 5px rgba(15,184,166,0); transform: scale(1.1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp 0.7s cubic-bezier(0.2,0.7,0.2,1) both; }
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.15s; }
.reveal-3 { animation-delay: 0.30s; }
.reveal-4 { animation-delay: 0.45s; }

/* Scroll reveal — element becomes visible when in view */
.scroll-reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.2,0.7,0.2,1), transform 0.55s cubic-bezier(0.2,0.7,0.2,1);
}
.scroll-reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============= Responsive ============= */
@media (max-width: 1180px) {
  .hero h1 { font-size: 80px; }
  .sub-hero h1 { font-size: 64px; }
  .folio .n { font-size: 108px; }
}
@media (max-width: 1024px) {
  :root { --gutter: 28px; }
  .nav-links, .nav-cta .icon-btn { display: none; }
  .burger { display: grid; }
  .hero, .sub-hero { grid-template-columns: 1fr; }
  .hero .editorial, .sub-hero .editorial { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .hero h1 { font-size: 72px; }
  .sub-hero h1 { font-size: 52px; }
  .section-head--split { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process { grid-template-columns: 1fr 1fr; }
  .footer-help-grid { grid-template-columns: 1fr; }
  .footer-help-title { font-size: 40px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 16px; }
  .footer-bottom-l, .footer-bottom-c, .footer-bottom-r { justify-content: flex-start; }
  .footer-bottom-c { justify-content: flex-start; }
}
@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .util-bar { padding: 8px 20px; flex-wrap: wrap; gap: 6px 12px; font-size: 10px; }
  .util-bar .util-r { display: none; }
  .nav .wa-text { display: none; }
  .hero .editorial, .sub-hero .editorial { padding: 32px 20px; }
  .hero .photo-col, .sub-hero .photo-col { padding: 28px 20px; }
  .hero h1 { font-size: 48px; }
  .sub-hero h1 { font-size: 40px; }
  .lede .dropcap { font-size: 56px; }
  .trust { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-help-title { font-size: 32px; }
  .footer-direct { flex-direction: column; align-items: flex-start; }
  .process { grid-template-columns: 1fr; }
  .process .step { border-left: 0; padding-left: 0; padding-bottom: 24px; border-bottom: 1px solid var(--hairline-ink); padding-right: 0; }
  .section { padding: 56px 0; }
  .section-head h2 { font-size: 40px; }
  .stats { grid-template-columns: 1fr 1fr 1fr; }
  .stat { padding: 0 10px; }
  .stat-v { font-size: 26px; }
  .stat-v .u { font-size: 12px; }
  .folio { top: 16px; right: 20px; }
  .folio .n { font-size: 76px; }
  .folio .l { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .brands-track { animation: none !important; }
  html { scroll-behavior: auto; }
}
