
:root{
  --bg: #F4F5F8;
  --surface: #FFFFFF;
  --surface-alt: #EEF0F5;
  --text: #171A32;
  --text-dim: #5C5F72;
  --blue: #0092D6;
  --blue-deep: #045C99;
  --teal: #00B6A3;
  --yellow: #FFC629;
  --magenta: #E01A6F;
  --line: rgba(23,26,50,0.09);
  --line-strong: rgba(23,26,50,0.16);
  --shadow-sm: 0 2px 10px rgba(23,26,50,.06);
  --shadow-md: 0 14px 34px rgba(23,26,50,.10);

  --display: "Poppins", "Segoe UI", sans-serif;
  --body: "Work Sans", "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "Courier New", monospace;

  --container: 1200px;
  --radius: 14px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family: var(--display); font-weight:700; letter-spacing:-.01em; margin:0; color: var(--text); }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
}
.eyebrow::before{
  content:"";
  width:9px; height:9px;
  border-radius:50%;
  background: var(--yellow);
  flex-shrink:0;
}

/* ---------- registration mark, signature motif ---------- */
.regmark{
  --s: 24px;
  width: var(--s); height: var(--s);
  position: relative;
  flex-shrink:0;
  display:inline-block;
}
.regmark::before,.regmark::after{
  content:"";
  position:absolute;
  background: currentColor;
  border-radius: 2px;
}
.regmark::before{ left:50%; top:0; width:2px; height:100%; transform:translateX(-50%); }
.regmark::after{ top:50%; left:0; height:2px; width:100%; transform:translateY(-50%); }
.regmark-circle{
  position:absolute; inset:16%;
  border:2px solid currentColor;
  border-radius:50%;
}

/* ---------- top utility bar ---------- */
.topbar{
  background: var(--surface-alt);
  border-bottom:1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing:.03em;
  position:relative;
  z-index:20;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:10px;
  padding-bottom:10px;
  gap:16px;
  flex-wrap:wrap;
}
.topbar-swatches{ display:flex; gap:6px; }
.topbar-swatches span{ width:8px; height:8px; border-radius:2px; display:inline-block; }
.sw-m{ background: var(--magenta); }
.sw-c{ background: var(--blue); }
.sw-y{ background: var(--yellow); }
.sw-k{ background: var(--teal); }
.topbar-phone{ color: var(--text-dim); }
.topbar-phone a{ color: var(--text); font-weight:600; }
.topbar-phone a:hover{ color: var(--blue); }

/* ---------- header / nav ---------- */
header.site{
  position: sticky;
  top:0;
  z-index: 30;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 26px 0;
  gap: 24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-family: var(--display);
  font-weight:800;
  font-size: 26px;
  letter-spacing: -.01em;
  color: var(--text);
}
.brand .regmark{
  color: var(--surface);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  padding: 5px;
  width: 34px; height:34px;
}
.brand small{
  display:block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing:.14em;
  color: var(--text-dim);
  text-transform:uppercase;
  font-weight:500;
  margin-top:3px;
}
.brand-logo {
  max-height: 30px; 
  width: auto;
  display: block;
  object-fit: contain;
}

.navlinks{
  display:flex;
  align-items:center;
  gap: 40px;
  font-size: 15px;
  font-weight:600;
}
.navlinks a{
  position:relative;
  padding: 8px 0;
  color: var(--text-dim);
  transition: color .2s ease;
}
.navlinks a:hover, .navlinks a.active{ color: var(--blue-deep); }
.navlinks a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  height:2.5px; width:0;
  border-radius: 2px;
  background: var(--blue);
  transition: width .25s ease;
}
.navlinks a:hover::after, .navlinks a.active::after{ width:100%; }
.navcta{
  display:flex;
  align-items:center;
  gap:16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--body);
  font-weight:600;
  font-size:14.5px;
  letter-spacing:.01em;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--blue);
  color: #fff;
  background: var(--blue);
  transition: all .2s ease;
  cursor:pointer;
  box-shadow: 0 6px 16px rgba(0,146,214,.25);
}
.btn:hover{ background: var(--blue-deep); border-color: var(--blue-deep); transform: translateY(-1px); }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow:none;
}
.btn-ghost:hover{ border-color: var(--blue); color: var(--blue-deep); background: transparent; transform:none; }

.navtoggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.navtoggle span{ width:24px; height:2px; background:var(--text); border-radius:2px; }

/* ---------- hero ---------- */
.hero{
  position:relative;
  padding: 88px 0 96px;
  overflow:hidden;
  background: linear-gradient(180deg, #F8F9FC 0%, var(--bg) 100%);
}
.hero .container{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items:center;
}
.hero-wave{
  position:absolute;
  top:-25%; right:-14%;
  width:62%; height:150%;
  z-index:1;
  pointer-events:none;
}
.hero-wave span{
  position:absolute;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  filter: blur(2px);
  opacity:.85;
  mix-blend-mode: multiply;
}
.hero-wave span:nth-child(1){
  inset: 8% 6% 18% 14%;
  background: conic-gradient(from 210deg at 45% 40%, var(--blue), var(--teal) 40%, var(--yellow) 75%, var(--blue));
  animation: blob-shift 14s ease-in-out infinite;
}
.hero-wave span:nth-child(2){
  inset: 0 0 40% 40%;
  background: radial-gradient(circle at 30% 30%, var(--yellow), transparent 65%);
  opacity:.55;
  animation: blob-shift 11s ease-in-out infinite reverse;
}
@keyframes blob-shift{
  0%,100%{ border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; transform: rotate(0deg) scale(1); }
  50%{ border-radius: 58% 42% 39% 61% / 55% 60% 40% 45%; transform: rotate(6deg) scale(1.03); }
}
.hero-swatchbar{
  position:absolute;
  top:0; left:0; right:0;
  height:5px;
  display:flex;
  z-index:3;
}
.hero-swatchbar span{ flex:1; transform-origin:left; animation: swatch-in .9s cubic-bezier(.2,.8,.2,1) both; }
.hero-swatchbar span:nth-child(1){ background:var(--magenta); animation-delay:.05s; }
.hero-swatchbar span:nth-child(2){ background:var(--blue); animation-delay:.15s; }
.hero-swatchbar span:nth-child(3){ background:var(--yellow); animation-delay:.25s; }
.hero-swatchbar span:nth-child(4){ background:var(--teal); animation-delay:.35s; }
@keyframes swatch-in{ from{ transform:scaleX(0);} to{ transform:scaleX(1);} }

.hero h1{
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.05;
  color: var(--text);
  animation: rise .8s ease .1s both;
}
.hero h1 em{
  font-style: normal;
  background: linear-gradient(100deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede{
  margin-top: 24px;
  max-width: 46ch;
  color: var(--text-dim);
  font-size: 18px;
  animation: rise .8s ease .25s both;
}
.hero-actions{
  margin-top: 36px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  animation: rise .8s ease .35s both;
}
@keyframes rise{ from{ opacity:0; transform:translateY(18px);} to{ opacity:1; transform:translateY(0);} }

.hero-stat{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.hero-stat:first-of-type{ border-top:none; padding-top:0; }
.hero-stat b{
  font-family: var(--display);
  font-weight:800;
  font-size: 26px;
  color: var(--blue-deep);
}
.hero-stat span{ font-size:12.5px; color:var(--text-dim); max-width:20ch; text-align:right; }

/* ---------- section scaffolding ---------- */
section{ position:relative; z-index:1; padding: 92px 0; }
.section-tight{ padding: 60px 0; }
.section-alt{ background: var(--surface-alt); }
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 40px;
  margin-bottom: 52px;
}
.section-head h2{
  font-size: clamp(26px, 3.2vw, 38px);
  margin-top: 12px;
  max-width: 16ch;
}
.section-head .lede{
  max-width: 38ch;
  color: var(--text-dim);
  font-size: 15.5px;
}
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* ---------- marca / historia ---------- */
.marca-grid{
  display:grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items:start;
}
.marca-copy p{ color: var(--text-dim); margin-bottom: 18px; font-size:16px; }
.marca-copy p:last-child{ margin-bottom:0; }
.marca-tag{
  display:inline-block;
  font-family: var(--display);
  font-weight:800;
  font-size: clamp(64px, 8vw, 120px);
  line-height:.8;
  background: linear-gradient(160deg, var(--blue), var(--teal));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  margin-bottom: 18px;
}
.marca-slogan{
  margin-top: 30px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-family: var(--display);
  font-weight:700;
  font-size: 20px;
  color: var(--text);
}
.marca-slogan span{ color: var(--blue-deep); }

.pillar-list{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.pillar{
  display:flex;
  gap: 18px;
  align-items:flex-start;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.pillar:hover{ box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar h4{ font-size:16.5px; margin-bottom:8px; }
.pillar p{ color: var(--text-dim); font-size:14.5px; }
.pillar:nth-child(1) .regmark{ color: var(--magenta); }
.pillar:nth-child(2) .regmark{ color: var(--blue); }
.pillar:nth-child(3) .regmark{ color: var(--yellow); }
.pillar:nth-child(4) .regmark{ color: var(--teal); }

/* ---------- tipos de tintas ---------- */
.ink-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.ink-card{
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px 26px;
  display:flex;
  flex-direction:column;
  min-height: 280px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.ink-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ink-card .chip{
  width: 40px; height: 40px;
  border-radius:50%;
  margin-bottom: 24px;
}
.ink-card:nth-child(1) .chip{ background: var(--magenta); }
.ink-card:nth-child(2) .chip{ background: var(--blue); }
.ink-card:nth-child(3) .chip{ background: var(--yellow); }
.ink-card:nth-child(4) .chip{ background: var(--teal); }
.ink-card .idx{
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing:.08em;
}
.ink-card h3{
  font-size: 18px;
  line-height:1.25;
  margin-bottom: 12px;
  font-weight:700;
}
.ink-card p{
  font-size: 14.5px;
  color: var(--text-dim);
  flex-grow:1;
}
.ink-card .go{
  margin-top: 20px;
  font-size: 13px;
  font-weight:700;
  color: var(--blue-deep);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.ink-card .go::after{ content:"→"; transition: transform .2s ease; }
.ink-card:hover .go::after{ transform: translateX(4px); }

/* ---------- CTA ---------- */
.cta{
  border-radius: 20px;
  background: linear-gradient(120deg, var(--blue-deep), var(--blue) 55%, var(--teal));
  padding: 60px 64px;
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items:center;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadow-md);
}
.cta::before{
  content:"";
  position:absolute; right:-40px; top:-60px;
  width:260px; height:260px;
  border-radius:50%;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  opacity:.5;
}
.cta .eyebrow{ color: #FFE28A; }
.cta .eyebrow::before{ background:#fff; }
.cta h2{ font-size: clamp(24px,3vw,34px); margin-bottom:14px; color:#fff; }
.cta p{ color: rgba(255,255,255,.85); max-width:44ch; }
.cta-actions{ display:flex; flex-direction:column; gap:14px; position:relative; z-index:2; }
.cta .btn { 
  background: var(--yellow); 
  color: var(--text); 
  border-color: var(--yellow); 
  box-shadow: none; 
}
.cta .btn:hover { 
  background: #ffffff; 
  border-color: #ffffff; 
  color: var(--blue-deep); 
}
.cta .btn-ghost { 
  background: transparent; 
  color: #ffffff; 
  border-color: rgba(255,255,255,0.6); 
}
.cta .btn-ghost:hover { 
  background: rgba(255,255,255,0.1); 
  border-color: #ffffff; 
  color: #ffffff; 
}

/* ---------- footer ---------- */
footer.site{
  padding: 64px 0 30px;
  background: var(--text);
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
footer.site h5, footer.site .footer-col a, footer.site p{ color: rgba(255,255,255,.72); }
footer.site .brand{ color:#fff; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr .9fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-brand .brand{ margin-bottom: 16px; }
.footer-brand p{ max-width:32ch; font-size:14px; }
.footer-col h5{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom: 18px;
  color: rgba(255,255,255,.48) !important;
}
.footer-col ul li{ margin-bottom: 12px; }
.footer-col a{ color: #fff !important; }
.footer-col a:hover{ color: var(--yellow) !important; }
.footer-col p{ color: rgba(255,255,255,.72) !important; }
.footer-legal{
  padding-top: 26px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* ---------- inner-page hero ---------- */
.pagehero{
  padding: 60px 0 52px;
  background: var(--surface-alt);
  position:relative;
}
.pagehero::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:4px;
  background: linear-gradient(90deg, var(--magenta), var(--blue), var(--yellow), var(--teal));
}
.breadcrumb{
  font-family: var(--mono);
  font-size:12.5px;
  color: var(--text-dim);
  letter-spacing:.03em;
  margin-bottom: 18px;
}
.breadcrumb a:hover{ color: var(--blue-deep); }
.pagehero h1{ font-size: clamp(32px,4.4vw,50px); }
.pagehero .lede{ margin-top:16px; max-width:60ch; color:var(--text-dim); font-size:17px; }

/* ---------- forms ---------- */
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-grid .full{ grid-column: 1 / -1; }
label{
  display:block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color: var(--text-dim);
  margin-bottom: 9px;
  font-weight:600;
}
input, select, textarea{
  width:100%;
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 15px;
  outline:none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus{ border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,146,214,.12); }
textarea{ resize: vertical; min-height:120px; }
select{ appearance:none; -webkit-appearance:none; background-image:none; }
::placeholder{ color: #A2A5B5; }

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:start;
}
.info-card{
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding:22px 24px;
  display:flex;
  gap:18px;
  margin-bottom: 16px;
}
.info-card .regmark{ color: var(--blue); flex-shrink:0; margin-top:2px; }
.info-card h4{ font-size:14px; margin-bottom:6px; letter-spacing:.01em; }
.info-card p, .info-card a{ color: var(--text-dim); font-size:14.5px; }
.info-card a:hover{ color: var(--blue-deep); }

.formnote{
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-dim);
}
.formnote.success{ color: var(--blue-deep); font-weight:600; display:none; }
.formnote.success.show{ display:block; }

/* ---------- locations ---------- */
.map-wrap{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-md);
  height: 440px;
}
.map-wrap iframe{ width:100%; height:100%; border:0; }
.loc-detail{
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}
.loc-detail h3{ font-size:19px; margin-bottom:18px; }
.loc-row{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap:14px;
  padding: 14px 0;
  border-top:1px solid var(--line);
  font-size:14.5px;
}
.loc-row:first-of-type{ border-top:none; padding-top:0; }
.loc-row dt{ font-family:var(--mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:var(--text-dim); }
.loc-row dd{ margin:0; color: var(--text); }
.loc-row a{ color: var(--blue-deep); font-weight:600; }
.loc-row a:hover{ color: var(--blue); }

/* ---------- about page extras ---------- */
.timeline{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 8px;
}
.timeline-item{
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  border-top: 4px solid var(--blue);
}
.timeline-item:nth-child(2){ border-top-color: var(--teal); }
.timeline-item:nth-child(3){ border-top-color: var(--yellow); }
.timeline-item:nth-child(4){ border-top-color: var(--magenta); }
.timeline-item b{
  font-family: var(--display);
  font-weight:800;
  font-size: 26px;
  color: var(--text);
  display:block;
  margin-bottom: 10px;
}
.timeline-item p{ color:var(--text-dim); font-size:14px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .marca-grid{ grid-template-columns: 1fr; gap: 40px; }
  .ink-grid{ grid-template-columns: repeat(2,1fr); }
  .pillar-list{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .cta{ grid-template-columns: 1fr; padding: 40px; }
  .timeline{ grid-template-columns: repeat(2,1fr); }
  .hero-wave{ opacity:.6; }
}

@media (max-width: 760px){
  .topbar-swatches{ display:none; }
  .navlinks{
    position:fixed; inset: 76px 0 0 0;
    background: var(--surface);
    flex-direction:column;
    align-items:flex-start;
    padding: 34px 28px;
    gap: 26px;
    font-size: 20px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 25;
  }
  .navlinks.open{ transform: translateX(0); }
  .navcta .btn-ghost{ display:none; }
  .navtoggle{ display:flex; }
  .ink-grid{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .section-head{ flex-direction:column; align-items:flex-start; gap:14px; }
  .timeline{ grid-template-columns: 1fr; }
  section{ padding: 60px 0; }
  .hero{ padding: 64px 0 60px; }
  .nav{ padding: 18px 0; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
