﻿/* ATAR — Sitio web · Sistema visual compartido
   Tipo Boutique consultora — editorial, sobrio, alto contraste tipográfico
*/

:root{
  --navy:        #0A2A5C;
  --navy-deep:   #061A3B;
  --navy-soft:   #1B3C7A;
  --navy-100:    #E6EAF4;
  --yellow:      #F5C518;
  --yellow-soft: #FFF1B8;
  --black:       #0A0E1A;
  --white:       #FFFFFF;
  --paper:       #FFFFFF;
  --bg-soft:     #F7F8FB;
  --gray-100:    #ECEFF5;
  --gray-200:    #DCE1EB;
  --gray-300:    #C2CAD9;
  --gray-500:    #6B7589;
  --gray-700:    #3B4458;

  --display: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --sans:    'Manrope', ui-sans-serif, system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  --container: 1280px;
  --gutter: 32px;

  --topbar-h: 36px;
  --nav-h: 96px;
  --header-h: calc(var(--topbar-h) + var(--nav-h));
}

*, *::before, *::after { box-sizing: border-box; }

html, body{
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--black);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, p, ul, ol, li, figure, blockquote{ margin: 0; padding: 0; }
ul, ol{ list-style: none; }
a{ color: inherit; text-decoration: none; }
img{ display: block; max-width: 100%; }
button{ font: inherit; cursor: pointer; }

::selection{ background: var(--yellow); color: var(--navy); }

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

.grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-12{ display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }

@media (max-width: 960px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; gap: 32px; }
}

/* ── Type system ─────────────────────────────── */
.eyebrow{
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-weight: 500; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy);
}
.eyebrow::before{
  content: ''; width: 28px; height: 2px;
  background: var(--yellow); display: inline-block;
}
.eyebrow.light{ color: rgba(255,255,255,0.88); }
.eyebrow.muted{ color: var(--gray-500); }

.h-display{ font-family: var(--display); font-weight: 700; font-size: clamp(56px, 9vw, 128px); line-height: 0.96; letter-spacing: -0.035em; color: var(--navy); }
.h-1{ font-family: var(--display); font-weight: 700; font-size: clamp(40px, 5.2vw, 72px); line-height: 1.02; letter-spacing: -0.025em; color: var(--navy); }
.h-2{ font-family: var(--display); font-weight: 700; font-size: clamp(32px, 3.6vw, 52px); line-height: 1.08; letter-spacing: -0.02em; color: var(--navy); }
.h-3{ font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.18; letter-spacing: -0.015em; color: var(--navy); }
.h-4{ font-family: var(--display); font-weight: 600; font-size: 22px; line-height: 1.25; letter-spacing: -0.01em; color: var(--navy); }

.lede{ font-family: var(--sans); font-size: clamp(19px, 1.7vw, 22px); line-height: 1.5; color: var(--gray-700); max-width: 42ch; }
.body-l{ font-family: var(--sans); font-size: 19px; line-height: 1.6; color: var(--gray-700); }
.body-m{ font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--gray-700); }
.body-s{ font-family: var(--sans); font-size: 15px; line-height: 1.5; color: var(--gray-700); }

.mono-label{ font-family: var(--mono); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-500); }
.mono-label.navy{ color: var(--navy); }

.text-yellow{ color: var(--yellow); }
.text-navy{ color: var(--navy); }
.text-white{ color: var(--white); }
.text-gray{ color: var(--gray-500); }

.underline-y{ background-image: linear-gradient(transparent 70%, var(--yellow) 70%); background-size: 100% 100%; padding: 0 2px; }

/* ── Buttons ─────────────────────────────────── */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
  cursor: pointer; text-decoration: none;
  white-space: nowrap;
}
.btn .arrow{ display: inline-block; transition: transform 200ms ease; }
.btn:hover .arrow{ transform: translateX(4px); }

.btn-primary{ background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover{ background: var(--navy-deep); border-color: var(--navy-deep); }

.btn-yellow{ background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.btn-yellow:hover{ background: #e0b313; border-color: #e0b313; }

.btn-ghost{ background: transparent; color: var(--navy); border-color: var(--gray-300); }
.btn-ghost:hover{ border-color: var(--navy); }

.btn-ghost-light{ background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover{ border-color: var(--yellow); color: var(--yellow); }

.btn-link{
  font-family: var(--mono); font-weight: 500; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy);
  padding: 4px 0;
  border-bottom: 2px solid var(--yellow);
  display: inline-flex; align-items: center; gap: 10px;
  transition: color 200ms ease, padding 200ms ease;
}
.btn-link:hover{ color: var(--navy-deep); padding-right: 8px; }
.btn-link.light{ color: var(--yellow); }
.btn-link.light:hover{ color: var(--white); }

/* ── Header ──────────────────────────────────── */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--gray-200);
}
.topbar{
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  height: var(--topbar-h);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  display: flex; align-items: center;
}
.topbar .container{ display: flex; align-items: center; justify-content: space-between; }
.topbar .left{ display: flex; align-items: center; gap: 22px; }
.topbar .left .yellow-dot{ width: 7px; height: 7px; background: var(--yellow); border-radius: 999px; display: inline-block; margin-right: 8px; vertical-align: middle; }
.topbar .right{ display: flex; align-items: center; gap: 24px; }
.topbar a{ color: rgba(255,255,255,0.78); transition: color 150ms ease; }
.topbar a:hover{ color: var(--yellow); }
.topbar .sep{ width: 1px; height: 14px; background: rgba(255,255,255,0.2); }

.lang-toggle{ display: inline-flex; gap: 0; border: 1px solid rgba(255,255,255,0.18); border-radius: 2px; overflow: hidden; }
.lang-toggle button{
  background: transparent; color: rgba(255,255,255,0.6);
  border: 0; padding: 4px 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 150ms ease, color 150ms ease;
}
.lang-toggle button.active{ background: var(--yellow); color: var(--navy); }
.lang-toggle button:not(.active):hover{ color: var(--white); }

.nav{
  height: calc(var(--nav-h) + 12px);
  display: flex; align-items: center; justify-content: space-between;
}
.nav .brand{ display: flex; align-items: center; gap: 14px; }
.nav .brand .logo{
  width: 84px; height: 84px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  border-radius: 2px;
  overflow: hidden;
}
.nav .brand .logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.48);
  transform-origin: center;
  filter: brightness(0) invert(1);
}
.nav .brand .wm{ font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; color: var(--navy); }
.nav .brand .wm small{ display: block; font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-500); margin-top: 2px; }

.nav-links{ display: flex; align-items: center; gap: 4px; }
.nav-links a{
  font-family: var(--sans); font-weight: 500; font-size: 15px;
  color: var(--gray-700);
  padding: 10px 16px;
  position: relative;
  transition: color 150ms ease;
}
.nav-links a::after{
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform 200ms ease;
}
.nav-links a:hover{ color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after{ transform: scaleX(1); }
.nav-links a.active{ color: var(--navy); font-weight: 600; }

.nav-cta{ display: flex; align-items: center; gap: 12px; }
.sr-only{ position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.nav-menu-toggle{
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--gray-300);
  background: var(--paper);
  border-radius: 2px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-menu-toggle span:not(.sr-only){ width: 20px; height: 2px; background: var(--navy); transition: transform 200ms ease, opacity 200ms ease; }
.nav.mobile-open .nav-menu-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav.mobile-open .nav-menu-toggle span:nth-child(2){ opacity: 0; }
.nav.mobile-open .nav-menu-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px){
  .topbar .left .hide-sm{ display: none; }
  .nav{ position: relative; }
  .nav-links{
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border: 1px solid var(--gray-200);
    box-shadow: 0 18px 40px rgba(10,14,26,0.12);
    padding: 12px;
  }
  .nav.mobile-open .nav-links{ display: flex; }
  .nav-links a{ padding: 14px 16px; }
  .nav-links a::after{ left: 16px; right: 16px; bottom: 8px; }
  .nav-menu-toggle{ display: inline-flex; }
  .nav .brand .wm small{ display: none; }
}
@media (max-width: 560px){
  :root{ --gutter: 20px; }
  .nav-cta{ display: none; }
  .topbar .right{ gap: 10px; }
  .site-footer .footer-main{ grid-template-columns: 1fr; }
  .site-footer .brand-block{ grid-column: auto; }
  .site-footer .bottom .legal a{ margin-left: 0; margin-right: 16px; }
}

/* ── Hero patterns ───────────────────────────── */
.hero{
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero .container{ position: relative; z-index: 2; }
.hero .eyebrow{ margin-bottom: 28px; }
.hero h1{ margin-bottom: 32px; max-width: 18ch; }
.hero .hero-actions{ display: flex; gap: 16px; align-items: center; margin-top: 40px; flex-wrap: wrap; }
.hero.dark{ background: var(--navy); color: var(--white); }
.hero.dark h1{ color: var(--white); }
.hero.dark .lede{ color: rgba(255,255,255,0.78); }

.hero .hero-meta{
  position: absolute; right: var(--gutter); bottom: 32px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-500);
  text-align: right;
}
.hero.dark .hero-meta{ color: rgba(255,255,255,0.5); }

/* Decorative tickers / numbers */
.hero-ticker{
  position: absolute; top: 0; right: 0;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gray-200) 20%, var(--gray-200) 80%, transparent);
  z-index: 0;
}

/* ── Sections ────────────────────────────────── */
.section{ padding: 96px 0; }
.section.tight{ padding: 64px 0; }
.section.dark{ background: var(--navy); color: var(--white); }
.section.dark .h-1, .section.dark .h-2, .section.dark .h-3{ color: var(--white); }
.section.dark .body-l, .section.dark .body-m, .section.dark .lede{ color: rgba(255,255,255,0.78); }
.section.dark .mono-label{ color: rgba(255,255,255,0.6); }
.section.soft{ background: var(--bg-soft); }

.section-head{
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}
.section.dark .section-head{ border-bottom-color: rgba(255,255,255,0.14); }
.section-head .left{ display: flex; flex-direction: column; gap: 20px; }
.section-head .right{ max-width: 44ch; }

@media (max-width: 880px){
  .section-head{ grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .section{ padding: 64px 0; }
}

/* ── Stats / counter strip ───────────────────── */
.stat-strip{
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.section.dark .stat-strip{ border-color: rgba(255,255,255,0.14); }
.stat-strip .stat{
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 12px;
  border-right: 1px solid var(--gray-200);
}
.section.dark .stat-strip .stat{ border-right-color: rgba(255,255,255,0.14); }
.stat-strip .stat:last-child{ border-right: 0; }
.stat-strip .stat .num{
  font-family: var(--display); font-weight: 700;
  font-size: clamp(48px, 5vw, 72px); line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.section.dark .stat-strip .stat .num{ color: var(--white); }
.stat-strip .stat .num sup{
  font-size: 0.4em; color: var(--yellow); margin-left: 4px;
  font-weight: 700; vertical-align: super;
}
.stat-strip .stat .lbl{
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-500);
}
.section.dark .stat-strip .stat .lbl{ color: rgba(255,255,255,0.6); }
.stat-strip .stat .desc{ font-size: 14px; color: var(--gray-700); line-height: 1.45; }
.section.dark .stat-strip .stat .desc{ color: rgba(255,255,255,0.7); }

@media (max-width: 880px){
  .stat-strip{ grid-template-columns: repeat(2, 1fr); }
  .stat-strip .stat:nth-child(2){ border-right: 0; }
  .stat-strip .stat:nth-child(1), .stat-strip .stat:nth-child(2){ border-bottom: 1px solid var(--gray-200); }
  .section.dark .stat-strip .stat:nth-child(1), .section.dark .stat-strip .stat:nth-child(2){ border-bottom-color: rgba(255,255,255,0.14); }
}

/* ── Service / generic card ──────────────────── */
.svc-card{
  display: flex; flex-direction: column; gap: 18px;
  padding: 40px 36px;
  background: var(--paper);
  border-top: 1px solid var(--gray-200);
  position: relative;
  transition: background 200ms ease;
}
.svc-card::before{
  content: ''; position: absolute; top: -1px; left: 0; height: 2px; width: 0;
  background: var(--yellow);
  transition: width 300ms ease;
}
.svc-card:hover{ background: var(--bg-soft); }
.svc-card:hover::before{ width: 100%; }

.svc-card .n{
  font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.16em; color: var(--gray-500);
  font-weight: 500;
}
.svc-card h3{ font-family: var(--display); font-weight: 700; font-size: 26px; line-height: 1.15; letter-spacing: -0.015em; color: var(--navy); }
.svc-card p{ font-size: 16px; line-height: 1.55; color: var(--gray-700); }
.svc-card .tags{ display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 12px; }
.svc-card .tag{
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
  padding: 4px 10px; background: var(--navy-100);
  border-radius: 2px;
}

/* ── Case card ───────────────────────────────── */
.case-card{
  display: flex; flex-direction: column; gap: 20px;
  text-decoration: none; color: inherit;
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  transition: padding 250ms ease;
}
.case-card::before{
  content: ''; position: absolute; top: -1px; left: 0; height: 2px; width: 0;
  background: var(--yellow);
  transition: width 300ms ease;
}
.case-card:hover::before{ width: 80px; }
.case-card .cover{
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--navy-100);
  position: relative; overflow: hidden;
}
.case-card .cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.case-card:hover .cover img{ transform: scale(1.035); }
.case-card .cover .stripes{
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(10,42,92,0.06) 12px 13px);
}
.case-card .cover .ph-label{
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--navy); text-transform: uppercase;
  background: var(--white); padding: 4px 10px;
}
.case-card .cover img + .ph-label{
  color: var(--white);
  background: rgba(6,26,59,0.9);
}
.case-card .meta{ display: flex; gap: 12px; align-items: center; }
.case-card .meta .dot{ width: 4px; height: 4px; background: var(--yellow); border-radius: 999px; display: inline-block; }
.case-card .meta .sector{ font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); }
.case-card h3{ font-family: var(--display); font-weight: 700; font-size: 26px; line-height: 1.2; letter-spacing: -0.015em; color: var(--navy); transition: color 200ms ease; max-width: 24ch; }
.case-card:hover h3{ color: var(--navy-deep); }
.case-card p{ font-size: 15px; line-height: 1.55; color: var(--gray-700); max-width: 38ch; }
.case-card .tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.case-card .tag{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 5px 10px;
  background: var(--navy-100);
  border-left: 3px solid var(--yellow);
}
.case-card .more{
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy); font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px;
}

/* ── Quote / pull ────────────────────────────── */
.pull{
  font-family: var(--display); font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 22ch;
  position: relative;
  padding-left: 32px;
}
.pull::before{
  content: ''; position: absolute; left: 0; top: 16px; bottom: 16px;
  width: 3px; background: var(--yellow);
}
.section.dark .pull{ color: var(--white); }

/* ── Process / steps ─────────────────────────── */
.steps{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
}
.step{
  padding: 32px 28px 32px 0;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  border-right: 1px solid var(--gray-200);
}
.step:last-child{ border-right: 0; }
.step .n{
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--yellow); font-weight: 600;
}
.step h4{ font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--navy); letter-spacing: -0.015em; line-height: 1.2; }
.step p{ font-size: 15px; line-height: 1.55; color: var(--gray-700); }
.step .when{ font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); margin-top: auto; padding-top: 12px; }

@media (max-width: 880px){
  .steps{ grid-template-columns: 1fr; }
  .step{ border-right: 0; border-bottom: 1px solid var(--gray-200); padding: 24px 0; }
  .step:last-child{ border-bottom: 0; }
}

/* ── Logo grid (clientes) ────────────────────── */
.logo-grid{
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}
.logo-grid .lg{
  aspect-ratio: 5/2;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  font-family: var(--display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; color: var(--gray-500);
  text-transform: uppercase;
  background: var(--paper);
  transition: color 200ms ease, background 200ms ease;
}
.logo-grid .lg:hover{ color: var(--navy); background: var(--bg-soft); }

@media (max-width: 880px){
  .logo-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ── Footer ──────────────────────────────────── */
.site-footer{
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  font-family: var(--sans);
}
.site-footer .footer-main{
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer .col h4{
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--yellow); font-weight: 500;
  margin-bottom: 18px;
}
.site-footer .col a, .site-footer .col li{
  display: block;
  font-size: 14px; line-height: 1.9;
  color: rgba(255,255,255,0.7);
  transition: color 150ms ease;
}
.site-footer .col a:hover{ color: var(--yellow); }
.site-footer .brand-block .wm{
  font-family: var(--display); font-weight: 700; font-size: 36px; letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 10px;
}
.site-footer .brand-block .tg{ font-size: 15px; color: rgba(255,255,255,0.7); max-width: 32ch; line-height: 1.55; margin-bottom: 24px; }
.site-footer .brand-block .contact{ display: flex; flex-direction: column; gap: 6px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--white); }
.site-footer .brand-block .contact a{ color: var(--white); }
.site-footer .brand-block .contact a:hover{ color: var(--yellow); }

.site-footer .bottom{
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.site-footer .bottom .legal a{ margin-left: 20px; color: rgba(255,255,255,0.5); }
.site-footer .bottom .legal a:hover{ color: var(--yellow); }

@media (max-width: 880px){
  .site-footer .footer-main{ grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer .brand-block{ grid-column: span 2; }
}

/* ── Big CTA strip ───────────────────────────── */
.cta-strip{
  background: var(--navy);
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::after{
  content: ''; position: absolute; right: -160px; bottom: -160px;
  width: 480px; height: 480px; border-radius: 999px;
  background: var(--yellow); opacity: 0.1;
  z-index: 1;
}
.cta-strip .container{ position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; }
.cta-strip h2{ color: var(--white); max-width: 18ch; }
.cta-strip .actions{ display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.cta-strip .actions .micro{ font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

@media (max-width: 880px){
  .cta-strip .container{ grid-template-columns: 1fr; }
  .cta-strip .actions{ align-items: flex-start; }
}

/* ── Page hero (interior pages) ──────────────── */
.page-hero{
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--gray-200);
}
.page-hero .container{ display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end; }
.page-hero .eyebrow{ margin-bottom: 24px; }
.page-hero h1{ max-width: 18ch; }
.page-hero .right{ display: flex; flex-direction: column; gap: 20px; padding-bottom: 8px; }
.page-visual{
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid var(--gray-200);
  margin: 8px 0 4px;
}
.page-hero.dark{ background: var(--navy); border-bottom-color: transparent; }
.page-hero.dark h1{ color: var(--white); }
.page-hero.dark .lede{ color: rgba(255,255,255,0.8); }
.page-hero .breadcrumb{
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 24px;
  display: flex; gap: 10px; align-items: center;
}
.page-hero .breadcrumb a:hover{ color: var(--navy); }
.page-hero .breadcrumb .sep{ color: var(--gray-300); }
.page-hero.dark .breadcrumb{ color: rgba(255,255,255,0.6); }
.page-hero.dark .breadcrumb .sep{ color: rgba(255,255,255,0.3); }

@media (max-width: 880px){
  .page-hero .container{ grid-template-columns: 1fr; gap: 32px; }
}

/* ── Reveal animation ────────────────────────── */
.reveal{ opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }
.reveal-d1{ transition-delay: 80ms; }
.reveal-d2{ transition-delay: 160ms; }
.reveal-d3{ transition-delay: 240ms; }
.reveal-d4{ transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* ── Forms ───────────────────────────────────── */
.field{ display: flex; flex-direction: column; gap: 8px; }
.field label{ font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-500); }
.field input, .field textarea, .field select{
  font-family: var(--sans); font-size: 16px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--gray-300);
  border-radius: 2px;
  color: var(--black);
  transition: border-color 200ms ease;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline: none; border-color: var(--navy);
}
.field textarea{ resize: vertical; min-height: 120px; }

/* ── Misc helpers ───────────────────────────── */
.hr{ border-top: 1px solid var(--gray-200); margin: 0; }
.hr.dark{ border-top-color: rgba(255,255,255,0.14); }
.mt-0{ margin-top: 0; } .mt-1{ margin-top: 12px; } .mt-2{ margin-top: 24px; } .mt-3{ margin-top: 36px; } .mt-4{ margin-top: 48px; } .mt-5{ margin-top: 64px; } .mt-6{ margin-top: 96px; }
.mb-0{ margin-bottom: 0; } .mb-1{ margin-bottom: 12px; } .mb-2{ margin-bottom: 24px; } .mb-3{ margin-bottom: 36px; } .mb-4{ margin-bottom: 48px; }

.fluid-photo{ width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--navy-100); }
.fluid-photo.tall{ aspect-ratio: 3/4; }

.flag-pill{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--navy); padding: 6px 10px;
  border: 1px solid var(--gray-200);
  background: var(--paper);
  border-radius: 999px;
}
.flag-pill .iso{ font-weight: 600; }

/* ── Compact publishing home ─────────────────── */
.compact-hero{
  padding: 80px 0 72px;
  background:
    linear-gradient(90deg, rgba(10,42,92,0.05) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(10,42,92,0.05) 0 1px, transparent 1px 100%);
  background-size: 72px 72px;
}
.compact-hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 72px;
  align-items: center;
}
.compact-hero .h-display{
  max-width: 14ch;
  font-size: clamp(48px, 7vw, 94px);
  letter-spacing: -0.02em;
}
.hero-visual{
  position: relative;
  min-height: 520px;
}
.hero-image{
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--gray-200);
  box-shadow: 0 24px 60px rgba(10,14,26,0.12);
}
.hero-logo-card{
  position: absolute;
  left: -36px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--paper);
  border: 1px solid var(--gray-200);
  padding: 24px 28px;
  box-shadow: 0 18px 42px rgba(10,14,26,0.14);
}
.hero-logo-card img{
  width: 132px;
  height: 132px;
  object-fit: contain;
}
.hero-logo-card strong{
  display: block;
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.hero-logo-card span{
  display: block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.proof-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-200);
  background: var(--paper);
}
.proof-strip div{
  padding: 28px 32px;
  border-right: 1px solid var(--gray-200);
}
.proof-strip div:last-child{ border-right: 0; }
.proof-strip strong{
  display: block;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.proof-strip span{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.compact-head{ margin-bottom: 40px; }
.service-explorer{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.service-icons{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-200);
}
.icon-tab{
  min-height: 168px;
  padding: 24px;
  border: 0;
  background: var(--paper);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.icon-tab:hover,
.icon-tab.active{
  background: var(--navy);
  color: var(--white);
}
.icon-tab:focus-visible{
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
}
.icon-wrap{
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
}
.icon-wrap svg{
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-tab span:last-child{
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
}
.service-detail{
  background: var(--paper);
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}
.service-detail h3{
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin: 18px 0 22px;
}
.service-detail p{
  font-size: 19px;
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 44ch;
}
.service-points{
  display: grid;
  gap: 10px;
  margin: 28px 0 32px;
}
.service-points span{
  padding-left: 22px;
  position: relative;
  color: var(--gray-700);
  font-size: 15px;
}
.service-points span::before{
  content: '';
  width: 7px;
  height: 7px;
  background: var(--yellow);
  position: absolute;
  left: 0;
  top: 0.7em;
}
.simple-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.simple-copy{ max-width: 560px; }
.process-mini{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}
.process-mini div{
  padding: 28px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--paper);
}
.process-mini span{
  display: inline-block;
  font-family: var(--mono);
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.process-mini strong{
  display: block;
  font-family: var(--display);
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 8px;
}
.process-mini p{
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.45;
}
.trust-row{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}
.trust-row span{
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--paper);
  color: var(--gray-500);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 960px){
  .compact-hero-grid,
  .service-explorer,
  .simple-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-explorer{ gap: 1px; }
  .trust-row{ grid-template-columns: repeat(2, 1fr); }
  .hero-visual,
  .hero-image{ min-height: 420px; }
  .hero-logo-card{ left: 24px; bottom: 24px; }
}

@media (max-width: 640px){
  .compact-hero{ padding: 56px 0; }
  .proof-strip,
  .service-icons,
  .process-mini{
    grid-template-columns: 1fr;
  }
  .proof-strip div{
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
  }
  .proof-strip div:last-child{ border-bottom: 0; }
  .icon-tab{ min-height: 128px; }
  .service-detail{ min-height: auto; }
  .trust-row{ grid-template-columns: 1fr; }
  .hero-visual,
  .hero-image{ min-height: 340px; }
  .hero-logo-card{
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .hero-logo-card img{
    width: 62px;
    height: 62px;
  }
  .hero-logo-card strong{ font-size: 28px; }
}


.is-hidden{ display: none !important; }


/* ── Client logo marquee ─────────────────────── */
.client-marquee-section{
  padding: 34px 0 42px;
  background: var(--paper);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.client-marquee-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.client-marquee-head p{
  color: var(--gray-500);
  font-size: 15px;
}
.client-marquee{
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.client-marquee-track{
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: client-scroll 42s linear infinite;
}
.client-marquee:hover .client-marquee-track{
  animation-play-state: paused;
}
.client-logo-card{
  width: clamp(150px, 16vw, 210px);
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 14px 18px;
}
.client-logo-card img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes client-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (max-width: 640px){
  .client-marquee-head{ align-items: flex-start; flex-direction: column; }
  .client-logo-card{ width: 150px; height: 78px; padding: 12px; }
}

/* ── ATAR refinements ────────────────────────── */
.hero-pretitle{
  display: block;
  max-width: 18ch;
  margin-bottom: 18px;
  font-size: clamp(24px, 2.7vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--gray-700);
}
.proof-strip.proof-strip-text{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.proof-strip.proof-strip-text div{
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.proof-strip.proof-strip-text strong{
  min-height: 52px;
  display: flex;
  align-items: center;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.proof-strip.proof-strip-text span{
  max-width: 24ch;
}
.svc-card{
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--yellow);
}
.svc-card .svc-icon{
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
}
.svc-card .n{
  color: var(--navy);
  font-weight: 700;
}
.client-logo-card{
  width: clamp(180px, 18vw, 250px);
  height: 118px;
  padding: 18px 22px;
}
.client-marquee-track{
  gap: 22px;
}
@media (max-width: 640px){
  .nav .brand .logo{ width: 68px; height: 68px; padding: 0; }
  .nav .brand .wm{ font-size: 20px; }
  .proof-strip.proof-strip-text{ grid-template-columns: 1fr; }
  .client-logo-card{ width: 170px; height: 96px; }

}





