/* ==========================================================================
   MIND MIAMI — mindmiami.com
   Design system: docs/mind-miami-handoff/DESIGN_SYSTEM.md
   ========================================================================== */

/* ---- Fonts (self-hosted, latin subset) ---- */
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/bebas-neue-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin-900-normal.woff2") format("woff2");
}

/* ---- Tokens ---- */
:root {
  --navy: #061524;
  --navy-2: #020d18;
  --cyan: #05d8df;
  --paper: #f4f0e8;
  --ink: #071321;
  --gray: #5f666b;
  --line: #b8b6ae;
  --white: #ffffff;

  --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-body: "Montserrat", Arial, sans-serif;

  --content-max: 1440px;
  --gutter: clamp(24px, 5vw, 76px);
  --section-space: clamp(64px, 8vw, 150px);

  --shadow-hard-navy: 4px 4px 0 var(--ink);
  --shadow-hard-cyan: 4px 4px 0 var(--cyan);
}

/* ---- Base ---- */
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button, a { touch-action: manipulation; }
main {
  min-height: 60vh;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(5, 21, 36, .09) .7px, transparent .7px);
  background-size: 5px 5px;
}

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.hero :focus-visible, .navy-section :focus-visible, .final-cta :focus-visible { outline-color: var(--white); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--cyan); color: var(--navy); font-weight: 900;
  padding: 14px 22px; letter-spacing: .04em;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- Type ---- */
h1, h2, h3, .stamp, .button, .filters button, .filters .filters-label {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .025em;
}
.accent { color: var(--cyan); }

/* ---- Bolt (official mark, inline SVG sprite) ---- */
.bolt-svg { display: inline-block; width: .8em; height: 1.15em; vertical-align: -.18em; }
.bolt-lg { width: 62px; height: 90px; filter: drop-shadow(4px 3px 0 rgba(2, 13, 24, .35)); transform: skew(-4deg); }

/* ---- Header ---- */
.site-header {
  height: 92px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 240px 1fr 180px;
  align-items: center;
  gap: 30px;
  background: rgba(244, 240, 232, .96);
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(6, 21, 36, .05);
}
.brand {
  display: grid;
  grid-template-columns: auto 22px auto;
  align-items: center;
  width: max-content;
  font-size: 19px;
  letter-spacing: .18em;
  font-weight: 800;
  line-height: 1;
}
.brand .bolt-svg { width: 17px; height: 25px; margin-top: -3px; justify-self: center; }
.brand em {
  grid-column: 1 / 4;
  font-size: 7px;
  letter-spacing: .5em;
  font-style: normal;
  text-align: center;
  margin-top: 9px;
  font-weight: 700;
  color: var(--gray);
}
.site-header nav, .site-footer nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 50px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}
.site-header nav a, .site-footer nav a { position: relative; padding: 9px 0; }
.site-header nav a::after, .site-footer nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px;
  background: var(--cyan);
  transition: .2s;
}
.site-header nav a:hover::after, .site-footer nav a:hover::after,
.site-header nav a[aria-current="page"]::after { right: 0; }
.top-cta {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan); color: var(--navy);
  padding: 15px 22px;
  font-size: 11px; font-weight: 900; letter-spacing: .04em;
  transition: transform .2s, box-shadow .2s;
}
.top-cta:hover, .button:hover { transform: translateY(-2px); box-shadow: var(--shadow-hard-navy); }
.menu-button { display: none; border: 0; background: transparent; font-weight: 900; padding: 12px; cursor: pointer; min-height: 44px; min-width: 44px; }

/* ---- Hero ---- */
.hero {
  min-height: 650px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(420px, .92fr) 1.15fr;
  position: relative;
  overflow: hidden;
  padding: 62px var(--gutter) 92px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 28% 20%, rgba(5, 216, 223, .08), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, .08), transparent 55%);
  pointer-events: none;
}
.hero-copy { max-width: 650px; align-self: center; position: relative; z-index: 4; }
.eyebrow {
  display: flex; align-items: center; gap: 20px;
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: .05em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.eyebrow b {
  font-size: 48px; font-weight: 400;
  background: var(--cyan); color: var(--navy);
  padding: 5px 12px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .4);
}
.hero h1 {
  margin: 0;
  font-size: clamp(58px, 7vw, 120px);
  line-height: .86;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, .15);
}
.hero h1 span { display: block; }
.cyan-scribble {
  width: 230px; height: 14px; margin: 20px 0;
  background: url("/assets/vector/scribble-underline.svg") no-repeat center / 100% 100%;
  transform: rotate(-1.5deg);
}
.hero-copy > p { max-width: 560px; font-size: 18px; line-height: 1.65; color: #e3e6e8; margin: 25px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 20px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 50px; padding: 0 26px;
  border: 1px solid var(--cyan);
  font-size: 15px; letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  background: transparent;
}
.button-primary { background: var(--cyan); color: var(--navy); }
.button-outline { color: var(--white); background: rgba(3, 15, 28, .55); }
.button-outline-dark { color: var(--navy); border-color: var(--navy); background: transparent; }

.hero-art { position: absolute; right: -1%; top: 0; width: 61%; height: 100%; z-index: 2; overflow: hidden; }
.hero-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(6, 21, 36, .75) 10%, transparent 34%);
}
.hero-art picture img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; filter: saturate(.95) contrast(1.05); }
.hero-bolt { position: absolute; right: 8%; top: 8%; z-index: 5; transform: rotate(6deg); }
.hero-art .stamp {
  position: absolute; right: 7%; bottom: 11%; z-index: 5;
  width: 160px; height: 160px;
  display: block;
  transform: rotate(-8deg);
}

/* ---- Torn edges ---- */
.torn-bottom { clip-path: polygon(0 0, 100% 0, 100% 96%, 97% 97%, 93% 96%, 90% 98%, 86% 96%, 81% 98%, 77% 96%, 73% 97%, 69% 96%, 65% 98%, 60% 96%, 56% 97%, 51% 96%, 47% 98%, 42% 96%, 38% 98%, 34% 96%, 29% 97%, 24% 96%, 20% 98%, 16% 96%, 11% 97%, 7% 96%, 3% 98%, 0 96%); }
.torn-both { clip-path: polygon(0 2%, 4% 1%, 9% 3%, 14% 1%, 19% 2%, 24% 1%, 30% 3%, 36% 1%, 42% 2%, 48% 1%, 55% 3%, 62% 1%, 69% 2%, 76% 1%, 83% 3%, 90% 1%, 95% 2%, 100% 1%, 100% 97%, 95% 99%, 89% 97%, 82% 99%, 75% 97%, 68% 99%, 61% 97%, 54% 99%, 47% 97%, 40% 99%, 33% 97%, 26% 99%, 19% 97%, 12% 99%, 6% 97%, 0 99%); }
.torn-top { clip-path: polygon(0 3%, 5% 1%, 11% 4%, 17% 1%, 23% 3%, 30% 1%, 37% 4%, 44% 2%, 52% 4%, 59% 1%, 66% 3%, 73% 1%, 80% 4%, 87% 2%, 93% 4%, 100% 2%, 100% 100%, 0 100%); }

/* ---- Sections ---- */
.paper {
  padding: clamp(70px, 8vw, 125px) var(--gutter);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(5, 21, 36, .1) .7px, transparent .7px);
  background-size: 5px 5px;
}
.navy-section {
  padding: clamp(80px, 8vw, 120px) var(--gutter);
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.section-heading h2 { font-size: clamp(42px, 5vw, 74px); line-height: .93; margin: 0; max-width: 820px; text-transform: uppercase; }
.section-heading .cyan-scribble { width: 180px; }
.section-heading.on-dark h2 { color: var(--white); }
.section-heading p { max-width: 590px; color: var(--gray); font-size: 17px; line-height: 1.6; }
.navy-section .section-heading p { color: #b9c6ce; }

.intro-split, .detail-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; padding-bottom: 55px; }
.large-copy { font-size: 18px; line-height: 1.7; max-width: 650px; }

/* ---- Icon rows / industries ---- */
.icon-row { padding-top: 35px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.icon-row > div, .industry-row > div { padding: 25px 35px; border-right: 1px solid var(--line); }
.icon-row > div:last-child, .industry-row > div:last-child { border: 0; }
.icon-row .row-icon, .industry-row .row-icon, .feature-grid article > .row-icon { display: block; min-height: 62px; }
.row-icon img, .row-icon .bolt-svg { width: 48px; height: 56px; object-fit: contain; }
.row-icon .icon { max-width: 48px; max-height: 56px; } /* inline icon SVGs are sized by their width/height attributes; cap to the row-icon box */
.icon-row h3, .industry-row h3, .feature-grid h3 { font-size: 22px; margin: 12px 0 8px; text-transform: uppercase; }
.icon-row p, .industry-row p, .feature-grid p { color: var(--gray); font-size: 14px; line-height: 1.5; margin: 0; }

/* ---- Service cards ---- */
.services-strip { display: grid; grid-template-columns: 260px 1fr; gap: 45px; padding-top: 105px; padding-bottom: 105px; }
.service-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card {
  border: 1px solid rgba(5, 216, 223, .65);
  min-height: 240px; padding: 24px 20px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: .25s;
  background: linear-gradient(145deg, rgba(5, 216, 223, .06), transparent 60%);
}
.service-card::before {
  content: "";
  position: absolute; width: 120px; height: 120px;
  background: rgba(255, 255, 255, .06); border-radius: 50%;
  right: -45px; top: -35px;
}
.service-card:hover { background: var(--cyan); color: var(--navy); transform: translateY(-5px); }
.service-card:hover p { color: var(--navy); }
.service-icon { min-height: 70px; color: var(--cyan); }
.service-icon svg, .service-icon img { width: 52px; height: 58px; }
.service-card:hover .service-icon { color: var(--navy); filter: brightness(.2); }
.service-card h3 { font-size: 21px; margin: 8px 0; text-transform: uppercase; }
.service-card p { color: #b9c6ce; font-size: 13px; line-height: 1.45; max-width: 200px; }
.card-arrow { position: absolute; right: 18px; bottom: 14px; font-size: 27px; }

/* ---- Process ---- */
.process-section { display: grid; grid-template-columns: 260px 1fr; gap: 50px; align-items: start; }
.process-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.process-row.steps-4 { grid-template-columns: repeat(4, 1fr); }
.process-step { position: relative; padding: 12px 20px 20px; border-right: 1px solid var(--line); min-height: 210px; }
.process-step:last-child { border: 0; }
.process-step > b {
  display: inline-block;
  background: var(--cyan); color: var(--navy);
  font-family: var(--font-display); font-weight: 400;
  font-size: 27px; padding: 7px 10px;
}
.process-symbol { display: block; margin: 18px 0 12px; min-height: 46px; }
.process-symbol img { width: 42px; height: 42px; object-fit: contain; }
.process-step h3 { font-size: 21px; margin: 0 0 8px; text-transform: uppercase; }
.process-step p { font-size: 13px; line-height: 1.5; color: var(--gray); margin: 0; }
.navy-section .process-step { border-color: rgba(255, 255, 255, .18); }
.navy-section .process-step p { color: #b9c6ce; }

/* ---- Work showcase ---- */
.showcase { display: grid; grid-template-columns: 270px 1fr; gap: 40px; }
.mini-work-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.mini-work {
  min-height: 270px; padding: 20px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--paper); color: var(--navy);
  border: 1px solid var(--cyan);
  position: relative; overflow: hidden;
}
.mini-work::before, .work-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(150deg, transparent 45%, rgba(5, 216, 223, .8) 46%, rgba(5, 216, 223, .8) 60%, transparent 61%),
    radial-gradient(circle at 80% 20%, rgba(7, 19, 33, .18) 0 22%, transparent 23%);
  opacity: .45;
}
.mini-work > * { position: relative; }
.mini-work small, .work-card small { color: var(--cyan); font-weight: 900; text-transform: uppercase; font-size: 11px; }
.work-card small { color: #0aa7ad; }
.mini-work h3 { font-size: 26px; line-height: .95; margin: 8px 0; text-transform: uppercase; }
.mini-work p { font-size: 12px; margin: 0; }
.variant-1::before { transform: scaleX(-1); }
.variant-2::before {
  background:
    linear-gradient(45deg, rgba(5, 216, 223, .9) 0 38%, transparent 39%),
    radial-gradient(circle at 75% 25%, rgba(7, 19, 33, .25) 0 20%, transparent 21%);
}
.variant-3::before {
  background:
    repeating-linear-gradient(82deg, transparent 0 12px, rgba(5, 216, 223, .18) 13px 14px),
    linear-gradient(160deg, transparent 40%, var(--cyan) 41% 57%, transparent 58%);
}

/* ---- Industries ---- */
.industries { display: grid; grid-template-columns: 260px 1fr; gap: 45px; }
.industry-row { display: grid; grid-template-columns: repeat(5, 1fr); }

/* ---- Work page ---- */
.proof-row { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 0; align-items: center; padding-top: 65px; padding-bottom: 65px; }
.proof-row .section-heading h2 { font-size: 48px; }
.proof-row > div:not(.section-heading) { text-align: center; padding: 20px; border-left: 1px solid var(--line); }
.proof-row .row-icon { min-height: 50px; }
.proof-row h3 { font-size: 16px; text-transform: uppercase; }
.work-zone { padding-top: 40px; }
.filters { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.filters .filters-label { margin-right: 20px; font-size: 18px; text-transform: uppercase; }
.filters button { border: 1px solid var(--cyan); background: transparent; color: var(--white); padding: 12px 25px; cursor: pointer; font-size: 16px; text-transform: uppercase; letter-spacing: .04em; }
.filters button.active, .filters button:hover { background: var(--cyan); color: var(--navy); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.work-card {
  min-height: 330px;
  background: var(--paper); color: var(--navy);
  padding: 30px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  border: 1px solid var(--cyan);
}
.work-card > * { position: relative; }
.work-card h3 { font-size: 43px; line-height: .92; margin: 12px 0; text-transform: uppercase; }
.work-card p { font-weight: 700; margin: 0; }
.work-card footer { margin: 20px -30px -30px; padding: 15px 30px; background: var(--navy); color: var(--white); font-size: 11px; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.work-card footer b { color: var(--cyan); }

/* ---- Services overview ---- */
.service-overview { padding-top: 70px; }
.service-overview > .section-heading { text-align: center; }
.service-overview > .section-heading h2 { margin: auto; }
.service-overview > .section-heading .cyan-scribble { margin-inline: auto; }
.center-copy { text-align: center; margin: 18px auto 55px; max-width: 560px; }
.service-overview-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.service-overview-grid .service-card {
  color: var(--navy);
  border: 0; border-bottom: 1px solid var(--line);
  min-height: 250px;
  display: grid; grid-template-columns: 90px 1fr 50px; align-items: center;
  background: none;
}
.service-overview-grid .service-card:nth-child(odd) { border-right: 1px solid var(--line); }
.service-overview-grid .service-card p { color: var(--gray); max-width: 340px; }
.service-overview-grid .service-card:hover { background: var(--cyan); }

/* ---- Detail pages ---- */
.detail-intro { padding-top: 70px; }
.feature-grid { padding-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.feature-grid article { padding: 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 240px; }
.feature-grid article:nth-child(3n) { border-right: 0; }
.deliverables { display: grid; grid-template-columns: 330px 1fr; gap: 60px; align-items: center; }
.deliverables .section-heading h2 { font-size: 58px; }
.deliverable-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.deliverable-list span { font-family: var(--font-display); font-size: 18px; color: var(--white); letter-spacing: .04em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.deliverable-list img { width: 20px; height: 20px; }

/* ---- FAQ ---- */
.faq-section { max-width: 860px; margin-inline: auto; }
.faq-section > .section-heading { text-align: center; margin-bottom: 40px; }
.faq-section > .section-heading h2 { margin: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  background: none; border: 0; cursor: pointer;
  text-align: left; padding: 24px 4px;
  font-family: var(--font-display); font-size: 24px; letter-spacing: .03em; text-transform: uppercase;
}
.faq-item button::after { content: "+"; font-size: 30px; color: var(--cyan); flex-shrink: 0; }
.faq-item button[aria-expanded="true"]::after { content: "–"; }
.faq-answer { padding: 0 4px 26px; max-width: 700px; color: var(--gray); line-height: 1.65; }
.faq-answer[hidden] { display: none; }

/* ---- Packages ---- */
.packages-page > .section-heading { text-align: center; margin-bottom: 45px; }
.packages-page > .section-heading h2 { margin: auto; }
.packages-page > .section-heading .cyan-scribble { margin-inline: auto; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 95px; }
.package-grid article {
  background: var(--navy); color: var(--white);
  padding: 45px 32px 35px; min-height: 590px;
  display: flex; flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}
.package-grid article.popular { border-color: var(--cyan); transform: translateY(-18px); }
.package-grid em {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: var(--navy);
  padding: 10px 25px; font-size: 11px; font-style: normal; font-weight: 900;
  white-space: nowrap;
}
.package-grid h2 { font-size: 55px; color: var(--cyan); text-align: center; margin: 5px 0; text-transform: uppercase; }
.package-grid article > p { text-align: center; margin: 0; color: #c8d0d5; font-weight: 700; }
.package-grid strong { font-family: var(--font-display); font-weight: 400; font-size: 65px; text-align: center; margin: 28px 0; }
.package-grid strong small { font-size: 23px; }
.package-grid ul { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.package-grid li { margin: 14px 0; font-size: 14px; display: flex; gap: 10px; align-items: baseline; }
.package-grid li img { width: 12px; height: 17px; flex-shrink: 0; }
.project-packages { display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); color: var(--white); margin-top: 40px; }
.project-packages article { padding: 50px; border-right: 1px solid rgba(255, 255, 255, .2); }
.project-packages article:last-child { border-right: 0; }
.project-packages h3 { font-size: 36px; margin: 0 0 20px; text-transform: uppercase; }
.project-packages strong { font-family: var(--font-display); font-weight: 400; font-size: 48px; background: var(--paper); color: var(--navy); padding: 7px 12px; }
.project-packages p { line-height: 1.6; color: #c8d0d5; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 1.05fr .85fr; gap: 50px; padding-top: 70px; }
.contact-grid .section-heading h2 { font-size: 58px; }
form { display: grid; gap: 12px; }
label { font-size: 12px; font-weight: 700; letter-spacing: .04em; }
input, textarea, select {
  width: 100%;
  border: 1px solid #a8a49b;
  background: rgba(255, 255, 255, .55);
  padding: 15px;
  color: var(--navy);
  border-radius: 0;
}
textarea { min-height: 145px; resize: vertical; }
.form-status { font-weight: 700; line-height: 1.5; }
.form-status.error { color: #a2231b; }
.success { border: 2px solid var(--cyan); padding: 40px; background: var(--white); }
.success h3 { font-size: 35px; text-transform: uppercase; }
.contact-grid aside p { font-weight: 700; line-height: 1.8; }
.contact-grid hr { border: 0; border-top: 1px solid var(--line); margin: 35px 0; }
.contact-grid aside h3 { font-size: 25px; text-transform: uppercase; }
.social-links { display: flex; gap: 22px; align-items: center; }
.social-links a { font-weight: 900; font-size: 13px; letter-spacing: .06em; border-bottom: 2px solid var(--cyan); padding-bottom: 3px; }
.cyan-note {
  background: var(--cyan);
  padding: 24px;
  display: grid; grid-template-columns: 55px 1fr; gap: 8px; align-items: center;
  margin-top: 35px;
  transform: rotate(-2deg);
}
.cyan-note b { font-family: var(--font-display); font-weight: 400; font-size: 25px; text-transform: uppercase; }
.cyan-note span { grid-column: 2; font-size: 11px; line-height: 1.5; }
.next-steps { display: grid; grid-template-columns: 300px 1fr; gap: 40px; }
.next-steps .process-row { grid-template-columns: repeat(4, 1fr); }

/* ---- Final CTA / Footer ---- */
.final-cta {
  background: var(--navy); color: var(--white);
  padding: 80px var(--gutter);
  display: grid; grid-template-columns: 1.4fr 1fr auto 150px;
  gap: 30px; align-items: center;
  position: relative; overflow: hidden;
}
.final-cta h2 { font-size: clamp(48px, 5vw, 75px); line-height: .9; margin: 0; color: var(--white); text-transform: uppercase; }
.final-cta p { line-height: 1.6; color: #c8d0d5; }
.final-art { text-align: center; }
.site-footer { min-height: 110px; padding: 30px var(--gutter); display: grid; grid-template-columns: 240px 1fr 200px; align-items: center; gap: 30px; }
.site-footer .footer-links { text-align: right; font-size: 12px; font-weight: 900; display: flex; gap: 18px; justify-content: flex-end; }
.site-footer .footer-links a { border-bottom: 2px solid var(--cyan); padding-bottom: 2px; }
.footer-meta { grid-column: 1 / 4; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 11px; color: var(--gray); border-top: 1px solid var(--line); padding-top: 18px; }
.footer-meta a { text-decoration: underline; }

/* ==========================================================================
   COLLAGE KIT — componentes compartidos para igualar los mockups del handoff
   (figuras recorte halftone, sellos, posters HTML, phone mock, calendario,
   strip de marcas, badges numerados). Usado por todas las páginas.
   ========================================================================== */

/* ---- Utilidades de rotación / cinta ----
   (via --tilt para que los reveals de motion no pisen la rotación) */
.tilt-l { --tilt: rotate(-2.5deg); transform: var(--tilt); }
.tilt-r { --tilt: rotate(2.5deg); transform: var(--tilt); }
.tilt-l2 { --tilt: rotate(-5deg); transform: var(--tilt); }
.tilt-r2 { --tilt: rotate(5deg); transform: var(--tilt); }
.tape::before {
  content: "";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 92px; height: 26px;
  background: rgba(244, 240, 232, .82);
  box-shadow: 0 1px 4px rgba(2, 13, 24, .25);
  z-index: 6;
}

/* ---- Figura collage: cutout sobre papel rasgado + texturas ---- */
.cutout-fig {
  position: relative;
  display: grid; place-items: center;
  min-height: 210px;
  isolation: isolate;
}
.cutout-fig::before {
  content: "";
  position: absolute; inset: 6% 10%;
  background: url("/assets/vector/cyan-torn-paper.svg") no-repeat center / contain;
  z-index: 1;
  transform: rotate(-4deg);
}
.cutout-fig::after {
  content: "";
  position: absolute; inset: 0 4% 8% auto; width: 46%;
  background: url("/assets/vector/newspaper-pattern.svg") no-repeat center / cover;
  clip-path: polygon(12% 0, 100% 6%, 92% 100%, 0 88%);
  opacity: .5;
  z-index: 0;
  transform: rotate(6deg);
}
.cutout-fig img {
  position: relative; z-index: 2;
  max-height: 240px; width: auto; max-width: 88%;
  filter: drop-shadow(6px 8px 0 rgba(2, 13, 24, .18));
}
.cutout-fig.fig-dots::after {
  background: url("/assets/vector/halftone-dots.svg") repeat center / 130px;
  clip-path: circle(46% at 70% 34%);
  opacity: .55;
}
.cutout-fig.fig-plain::before, .cutout-fig.fig-plain::after { display: none; }
.cutout-fig .stamp-mini {
  position: absolute; right: 2%; bottom: 0; z-index: 4;
  width: 92px; height: 92px; transform: rotate(-10deg);
}

/* Recortes rectangulares (fotos patch de los collages de producción) */
.photo-patch {
  position: relative;
  box-shadow: 6px 8px 0 rgba(2, 13, 24, .16);
  transform: rotate(-1.5deg);
  overflow: hidden;
}
.photo-patch img { display: block; width: 100%; height: 100%; object-fit: cover; }
.photo-patch.patch-torn { clip-path: polygon(2% 3%, 97% 0, 100% 96%, 94% 100%, 3% 98%, 0 92%); box-shadow: none; filter: drop-shadow(6px 8px 0 rgba(2, 13, 24, .16)); }

/* ---- Badge numerado de servicio (01–11) ---- */
.num-badge {
  display: inline-flex; align-items: center; gap: 16px;
  margin-bottom: 18px;
}
.num-badge b {
  font-family: var(--font-display); font-weight: 400;
  font-size: 34px; line-height: 1;
  background: var(--cyan); color: var(--navy);
  padding: 8px 13px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, .35);
}
.num-badge span {
  font-family: var(--font-display); font-size: 22px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--white);
  border-bottom: 3px solid var(--cyan); padding-bottom: 4px;
}

/* ---- Strip de marcas (TRUSTED BY…) ---- */
.brand-strip {
  background: var(--navy-2); color: var(--white);
  padding: 34px var(--gutter) 40px;
  text-align: center;
}
.brand-strip small {
  display: block;
  font-size: 11px; font-weight: 900; letter-spacing: .35em;
  color: #8fa2ad; text-transform: uppercase;
  margin-bottom: 26px;
}
.brand-strip ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 26px 34px;
}
.brand-strip li { opacity: .92; }
.wordmark { font-size: 15px; letter-spacing: .3em; font-weight: 500; text-transform: uppercase; }
.wordmark-bold { font-size: 17px; letter-spacing: .12em; font-weight: 900; text-transform: uppercase; }
.wordmark-bold i { font-style: normal; font-weight: 400; }
.wordmark-serif { font-family: Georgia, "Times New Roman", serif; font-size: 20px; letter-spacing: .06em; }
.wordmark-2line { font-size: 11px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; line-height: 1.5; display: inline-block; text-align: left; }
.wordmark-icon { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.wordmark-icon .icon { width: 16px; height: 16px; }

/* ---- Posters HTML (sample work / flyers / tiles de Instagram) ---- */
.poster {
  aspect-ratio: 4 / 5;
  background: var(--navy); color: var(--white);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 9%;
  box-shadow: 5px 7px 0 rgba(2, 13, 24, .18);
}
.poster::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) .6px, transparent .6px);
  background-size: 4px 4px;
  pointer-events: none;
}
.poster .label-strip {
  display: inline-block;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(15px, 1.6vw, 24px); line-height: 1.06; letter-spacing: .03em;
  text-transform: uppercase;
  padding: .18em .45em .1em;
  margin: 2px 0;
  width: max-content; max-width: 100%;
}
.poster .strip-cyan { background: var(--cyan); color: var(--navy); }
.poster .strip-navy { background: var(--navy); color: var(--white); }
.poster .strip-white { background: var(--paper); color: var(--navy); }
.poster .strip-outline { border: 2px solid var(--cyan); color: var(--cyan); }
.poster-photo { position: absolute; inset: auto 0 0 0; height: 42%; }
.poster-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.poster .poster-brand {
  position: absolute; top: 7%; left: 9%; right: 9%;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 8px; font-weight: 900; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}
.poster.poster-paper { background: var(--paper); color: var(--navy); }
.poster.poster-paper .poster-brand { color: rgba(6, 21, 36, .6); }
.poster.poster-cyan { background: var(--cyan); color: var(--navy); }
.poster .poster-foot {
  position: absolute; bottom: 6%; left: 9%; right: 9%;
  font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  display: flex; justify-content: space-between; gap: 8px;
  color: rgba(255, 255, 255, .7);
}
.poster.poster-paper .poster-foot { color: rgba(6, 21, 36, .65); }
.poster .bolt-svg { color: var(--cyan); }

/* ---- Phone mock (CSS puro, feed dentro) ---- */
.phone-mock {
  width: min(320px, 78vw);
  aspect-ratio: 9 / 18.5;
  background: #10151b;
  border-radius: 44px;
  border: 3px solid #2a3138;
  box-shadow: 14px 18px 0 rgba(2, 13, 24, .35);
  padding: 14px 12px;
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.phone-mock::before {
  content: "";
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 17px; border-radius: 12px;
  background: #05080c;
  z-index: 3;
}
.phone-screen {
  flex: 1;
  background: var(--paper);
  border-radius: 26px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 12px 8px;
  font-size: 10px; font-weight: 900; letter-spacing: .1em;
  color: var(--navy);
  border-bottom: 1px solid rgba(6, 21, 36, .1);
}
.phone-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: min-content; gap: 2px; padding: 2px; }
.phone-grid .poster { aspect-ratio: 1; height: auto; padding: 7%; box-shadow: none; justify-content: flex-end; }
.phone-grid .poster .label-strip { font-size: 7.5px; padding: .2em .4em; margin: 1px 0; }
.phone-grid .poster-photo { height: 55%; }
.phone-foot {
  margin-top: auto;
  display: flex; justify-content: space-around; align-items: center;
  padding: 10px 0 12px;
  border-top: 1px solid rgba(6, 21, 36, .1);
}
.phone-foot i { width: 16px; height: 16px; border: 2px solid var(--navy); border-radius: 4px; display: block; }
.phone-foot i:nth-child(2) { border-radius: 50%; }
.phone-foot i:nth-child(3) { border-radius: 2px; transform: rotate(45deg) scale(.9); }

/* ---- Calendario de booking (estático, mock del widget) ---- */
.cal-widget {
  background: var(--navy); color: var(--white);
  border-radius: 26px;
  padding: 26px 24px 30px;
  max-width: 380px;
  box-shadow: 10px 12px 0 rgba(2, 13, 24, .18);
}
.cal-widget h3 {
  font-size: 20px; letter-spacing: .1em; text-align: center;
  margin: 0 0 18px; text-transform: uppercase;
}
.cal-nav {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 21px; letter-spacing: .06em;
  margin-bottom: 14px; text-transform: uppercase;
}
.cal-nav button {
  background: none; border: 1px solid rgba(255, 255, 255, .25); color: var(--white);
  width: 34px; height: 34px; cursor: pointer; font-size: 16px;
}
.cal-days, .cal-dates { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; gap: 4px; }
.cal-days span { font-size: 9px; font-weight: 900; letter-spacing: .08em; color: #8fa2ad; padding: 6px 0; }
.cal-dates span {
  font-size: 12px; font-weight: 700;
  aspect-ratio: 1; display: grid; place-items: center;
  border-radius: 50%;
  color: #d7dee3;
}
.cal-dates span.is-off { color: #4a5a66; }
.cal-dates span.is-sel { background: var(--cyan); color: var(--navy); }
.cal-widget p { font-size: 11px; font-weight: 700; color: #b9c6ce; margin: 16px 0 10px; }
.cal-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.cal-times span {
  border: 1px solid var(--cyan); color: var(--cyan);
  font-size: 12px; font-weight: 900; text-align: center;
  padding: 9px 0;
}
.cal-times span:hover { background: var(--cyan); color: var(--navy); }
.cal-widget footer { text-align: center; font-size: 10px; color: #8fa2ad; margin-top: 16px; }

/* ---- Cards oscuras con media (WHAT WE CREATE / EVERYTHING YOU NEED) ---- */
.card-media {
  margin: -24px -20px 16px;
  height: 150px;
  overflow: hidden;
  position: relative;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(180deg, transparent, rgba(6, 21, 36, .55));
}
.check-list { list-style: none; padding: 0; margin: 10px 0 0; }
.check-list li {
  display: flex; gap: 9px; align-items: baseline;
  font-size: 12.5px; font-weight: 600; color: #d7dee3;
  margin: 7px 0;
}
.check-list li::before { content: ""; width: 11px; height: 11px; flex-shrink: 0; background: url("/assets/vector/circle-check.svg") no-repeat center / contain; }
.paper .check-list li { color: var(--ink); }

/* ---- Caja cian de checks (WE REPLY FAST) ---- */
.cyan-note.torn {
  clip-path: polygon(2% 4%, 98% 0, 100% 94%, 95% 100%, 3% 97%, 0 90%);
  transform: rotate(-2deg);
}
.cyan-note .check-list li { color: var(--navy); font-weight: 800; }
.cyan-note .check-list li::before { filter: brightness(.15); }

/* ---- Fila de pasos con figuras collage (WHAT HAPPENS NEXT / HOW WE WORK) ---- */
.step-fig { min-height: 120px; margin-top: 16px; }
.step-fig img { max-height: 120px; }
.process-arrow {
  position: absolute; right: -14px; top: 42px; z-index: 3;
  width: 28px; height: 18px;
  background: url("/assets/vector/arrow-right.svg") no-repeat center / contain;
}
.navy-section .process-arrow { filter: invert(1) brightness(1.6); }

/* ---- Services overview con media (filas 2-col del mockup) ---- */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.svc-cell {
  display: grid; grid-template-columns: 64px 1fr 200px;
  gap: 22px; align-items: center;
  padding: 34px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.svc-cell:nth-child(odd) { border-right: 1px solid var(--line); }
.svc-cell .svc-icon { color: var(--navy); }
.svc-cell .svc-icon .icon, .svc-cell .svc-icon img { width: 44px; height: 50px; }
.svc-cell h3 { font-size: 26px; margin: 0 0 8px; text-transform: uppercase; }
.svc-cell p { color: var(--gray); font-size: 13.5px; line-height: 1.55; margin: 0 0 14px; }
.svc-cell .cutout-fig { min-height: 170px; }
.svc-cell .cutout-fig img { max-height: 150px; }
.svc-cell .photo-patch { height: 150px; }
.button-sm {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan); color: var(--navy);
  font-family: var(--font-display); font-size: 14px; letter-spacing: .08em;
  padding: 8px 14px; text-transform: uppercase;
}
.button-sm:hover { box-shadow: var(--shadow-hard-navy); transform: translateY(-2px); }

/* ---- Hero collage compuesto (cutouts sueltos sobre el arte) ---- */
.hero-cutout { position: absolute; z-index: 4; filter: drop-shadow(8px 10px 0 rgba(2, 13, 24, .3)); }
.hero-phone { right: 12%; top: 8%; width: min(300px, 24vw); transform: rotate(-4deg); }

/* ---- Stat / results row (CONSISTENCY COMPOUNDS…) ---- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding-top: 30px; }
.stat-row > div { padding: 22px 28px; border-right: 1px solid var(--line); text-align: center; }
.stat-row > div:last-child { border-right: 0; }
.stat-row .row-icon { min-height: 56px; display: block; }
.stat-row h3 { font-size: 20px; text-transform: uppercase; margin: 10px 0 6px; }
.stat-row p { font-size: 13px; color: var(--gray); line-height: 1.5; margin: 0; }
.navy-section .stat-row > div { border-color: rgba(255, 255, 255, .16); }
.navy-section .stat-row p { color: #b9c6ce; }

/* ---- Responsive del kit ---- */
@media (max-width: 1050px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-cell:nth-child(odd) { border-right: 0; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-row > div:nth-child(2n) { border-right: 0; }
  .brand-strip ul { justify-content: center; }
}
@media (max-width: 760px) {
  .svc-cell { grid-template-columns: 44px 1fr; }
  .svc-cell .cutout-fig, .svc-cell .photo-patch { display: none; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-row > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .cal-widget { max-width: 100%; }
  .phone-mock { margin-inline: auto; }
  .cutout-fig img { max-height: 180px; }
}

/* ---- Scroll reveals (JS adds .js-motion to <html>) ---- */
.reveal-copy, .reveal-card, .reveal-fig { will-change: transform, opacity; }
.js-motion .reveal-copy { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity .55s cubic-bezier(.22, .61, .36, 1), transform .55s cubic-bezier(.22, .61, .36, 1); }
.js-motion .reveal-card { opacity: 0; transform: translate3d(0, 30px, 0); transition: opacity .6s cubic-bezier(.22, .61, .36, 1), transform .6s cubic-bezier(.22, .61, .36, 1); }
.js-motion .is-revealed { opacity: 1; transform: var(--tilt, none); }
.js-motion [data-stagger] .reveal-card:nth-child(2) { transition-delay: .07s; }
.js-motion [data-stagger] .reveal-card:nth-child(3) { transition-delay: .14s; }
.js-motion [data-stagger] .reveal-card:nth-child(4) { transition-delay: .21s; }
.js-motion [data-stagger] .reveal-card:nth-child(5) { transition-delay: .28s; }
.js-motion [data-stagger] .reveal-card:nth-child(6) { transition-delay: .35s; }
.js-motion [data-stagger] .reveal-card:nth-child(7) { transition-delay: .42s; }
.js-motion [data-stagger] .reveal-card:nth-child(8) { transition-delay: .49s; }

/* ==========================================================================
   MOTION KIT — scroll creativo (siempre transform/opacity, GPU-friendly;
   prefers-reduced-motion lo apaga todo al final del archivo)
   ========================================================================== */

/* Figuras collage: entran con escala + rotación, aterrizan en su tilt */
.js-motion .reveal-fig { opacity: 0; transform: scale(.88) rotate(-4deg) translate3d(0, 26px, 0); transition: opacity .7s ease, transform .75s cubic-bezier(.34, 1.3, .5, 1); }
.js-motion .reveal-fig.is-revealed { opacity: 1; transform: var(--tilt, none); }

/* Headings de sección: se “pintan” de izquierda a derecha al revelarse */
.js-motion .reveal-copy .section-heading h2,
.js-motion .section-heading.reveal-copy h2 { clip-path: inset(-2% 101% -6% 0); transition: clip-path .85s cubic-bezier(.25, .46, .45, .94) .12s; }
.js-motion .reveal-copy.is-revealed .section-heading h2,
.js-motion .section-heading.reveal-copy.is-revealed h2 { clip-path: inset(-2% -3% -6% 0); }

/* Scribbles: se dibujan tras aparecer el heading */
.js-motion .reveal-copy .cyan-scribble { transform: scaleX(0) rotate(-1.5deg); transform-origin: left center; transition: transform .55s cubic-bezier(.25, .46, .45, .94) .5s; }
.js-motion .reveal-copy.is-revealed .cyan-scribble { transform: scaleX(1) rotate(-1.5deg); }

/* Símbolos de proceso y chips numerados: pop retardado dentro del paso */
.js-motion .process-step .process-symbol { opacity: 0; transform: scale(.55); transition: opacity .4s .3s, transform .45s cubic-bezier(.34, 1.56, .64, 1) .3s; }
.js-motion .process-step.is-revealed .process-symbol { opacity: 1; transform: none; }
.js-motion .process-step > b { display: inline-block; opacity: 0; transform: translate3d(-14px, 0, 0) rotate(-4deg); transition: opacity .4s .15s, transform .45s cubic-bezier(.34, 1.3, .5, 1) .15s; }
.js-motion .process-step.is-revealed > b { opacity: 1; transform: none; }
.js-motion .process-step .process-arrow { opacity: 0; transform: translate3d(-10px, 0, 0); transition: opacity .35s .55s, transform .4s cubic-bezier(.22, .61, .36, 1) .55s; }
.js-motion .process-step.is-revealed .process-arrow { opacity: 1; transform: none; }

/* Brand strip: wordmarks en cascada */
.js-motion .brand-strip li { opacity: 0; transform: translate3d(0, 14px, 0); transition: opacity .5s ease, transform .5s cubic-bezier(.22, .61, .36, 1); }
.js-motion .brand-strip.is-revealed li { opacity: .92; transform: none; }
.js-motion .brand-strip.is-revealed li:nth-child(2) { transition-delay: .06s; }
.js-motion .brand-strip.is-revealed li:nth-child(3) { transition-delay: .12s; }
.js-motion .brand-strip.is-revealed li:nth-child(4) { transition-delay: .18s; }
.js-motion .brand-strip.is-revealed li:nth-child(5) { transition-delay: .24s; }
.js-motion .brand-strip.is-revealed li:nth-child(6) { transition-delay: .3s; }
.js-motion .brand-strip.is-revealed li:nth-child(7) { transition-delay: .36s; }
.js-motion .brand-strip.is-revealed li:nth-child(8) { transition-delay: .42s; }

/* Hero: coreografía de entrada al cargar */
.js-motion .hero h1 span { display: block; opacity: 0; transform: translate3d(0, 34px, 0); animation: hero-rise .65s cubic-bezier(.22, .61, .36, 1) .05s forwards; }
.js-motion .hero h1 span:nth-child(2) { animation-delay: .16s; }
.js-motion .hero .cyan-scribble { transform-origin: left center; animation: scribble-draw .5s cubic-bezier(.25, .46, .45, .94) .55s both; }
.js-motion .hero-copy > p { opacity: 0; animation: hero-rise .6s cubic-bezier(.22, .61, .36, 1) .42s forwards; }
.js-motion .hero-actions { opacity: 0; animation: hero-rise .6s cubic-bezier(.22, .61, .36, 1) .56s forwards; }
.js-motion .hero-art { opacity: 0; animation: hero-art-in .85s cubic-bezier(.22, .61, .36, 1) .2s forwards; }
.js-motion .hero-art .stamp { animation: stamp-in .5s cubic-bezier(.34, 1.56, .64, 1) .9s backwards; }
@keyframes hero-rise { from { opacity: 0; transform: translate3d(0, 34px, 0); } to { opacity: 1; transform: none; } }
@keyframes scribble-draw { from { transform: scaleX(0) rotate(-1.5deg); } to { transform: scaleX(1) rotate(-1.5deg); } }
@keyframes hero-art-in { from { opacity: 0; transform: translate3d(56px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes stamp-in { from { opacity: 0; transform: rotate(-8deg) scale(.55); } to { opacity: 1; transform: rotate(-8deg) scale(1); } }

/* Elementos con parallax por scroll (JS escribe transform inline) */
[data-parallax], [data-rotate-scroll] { will-change: transform; }

/* ---- Responsive ---- */
@media (max-width: 1050px) {
  .site-header { grid-template-columns: 210px 1fr 150px; padding-inline: 25px; }
  .site-header nav { gap: 20px; }
  .hero { grid-template-columns: 1fr; min-height: 690px; padding-inline: 35px; }
  .hero-copy { max-width: 58%; }
  .hero-art { width: 68%; opacity: .85; }
  .hero h1 { font-size: 76px; }
  .stamp { width: 120px; height: 120px; }
  .services-strip, .process-section, .showcase, .industries, .deliverables, .next-steps { grid-template-columns: 1fr; }
  .service-card-grid { grid-template-columns: repeat(3, 1fr); }
  .mini-work-grid { grid-template-columns: repeat(3, 1fr); }
  .mini-work:nth-child(n+4) { display: none; }
  .proof-row { grid-template-columns: 1fr 1fr 1fr; }
  .proof-row .section-heading { grid-column: 1 / 4; margin-bottom: 30px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid aside { grid-column: 1 / 3; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
  .contact-grid aside .section-heading, .contact-grid aside hr { grid-column: 1 / 3; }
  .final-cta { grid-template-columns: 1.5fr 1fr auto; }
  .final-art { display: none; }
}

@media (max-width: 760px) {
  .site-header { height: 76px; grid-template-columns: 1fr auto; padding-inline: 18px; position: sticky; top: 0; }
  .brand { font-size: 15px; }
  .brand .bolt-svg { width: 13px; height: 20px; }
  .brand em { font-size: 5px; }
  .menu-button { display: block; }
  .top-cta { display: none; }
  .site-header nav {
    display: none;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--paper);
    padding: 25px;
    flex-direction: column; align-items: center;
    border-bottom: 3px solid var(--cyan);
    box-shadow: 0 18px 30px rgba(2, 13, 24, .18);
  }
  .site-header nav.nav-open { display: flex; }
  .site-header nav a { font-size: 14px; padding: 12px 0; }
  .hero { min-height: 720px; padding: 54px 22px 90px; display: flex; align-items: flex-start; }
  .hero-copy { max-width: 100%; z-index: 6; }
  .hero h1 { font-size: clamp(50px, 15vw, 79px); max-width: 530px; }
  .hero-copy > p { font-size: 16px; max-width: 92%; }
  .eyebrow { font-size: 17px; }
  .eyebrow b { font-size: 32px; }
  .hero-art { width: 100%; height: 58%; top: auto; bottom: 0; opacity: .47; }
  .hero-art::after { background: linear-gradient(180deg, var(--navy) 0%, transparent 38%); }
  .hero-bolt { right: 8%; top: 30%; }
  .stamp { right: 4%; bottom: 7%; width: 94px; height: 94px; }
  .button { font-size: 13px; padding-inline: 17px; min-height: 44px; }
  .hero-actions { gap: 10px; }
  .paper, .navy-section { padding: 70px 22px; }
  .section-heading h2 { font-size: 45px; }
  .intro-split, .detail-intro { grid-template-columns: 1fr; gap: 20px; }
  .large-copy { font-size: 16px; }
  .icon-row { grid-template-columns: 1fr 1fr; padding-top: 5px; }
  .icon-row > div { border-bottom: 1px solid var(--line); padding: 25px 15px; }
  .icon-row > div:nth-child(2n) { border-right: 0; }
  .service-card-grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 210px; }
  .service-card p { font-size: 12px; }
  .service-card h3 { font-size: 18px; }
  .process-row, .process-row.steps-4 { grid-template-columns: 1fr 1fr; }
  .process-step { min-height: 190px; }
  .process-step:nth-child(2n) { border-right: 0; }
  .mini-work-grid { grid-template-columns: 1fr; }
  .mini-work { min-height: 220px; }
  .mini-work:nth-child(n+3) { display: none; }
  .industry-row { grid-template-columns: 1fr 1fr; }
  .industry-row > div { border-bottom: 1px solid var(--line); padding: 20px 12px; }
  .industry-row > div:nth-child(2n) { border-right: 0; }
  .proof-row { grid-template-columns: 1fr 1fr; }
  .proof-row .section-heading { grid-column: 1 / 3; }
  .proof-row > div:not(.section-heading) { border-bottom: 1px solid var(--line); }
  .filters { gap: 8px; }
  .filters .filters-label { width: 100%; }
  .filters button { padding: 9px 12px; font-size: 13px; min-height: 44px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 290px; }
  .service-overview-grid { grid-template-columns: 1fr; }
  .service-overview-grid .service-card,
  .service-overview-grid .service-card:nth-child(odd) { border-right: 0; grid-template-columns: 60px 1fr 30px; padding: 20px 8px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid article { padding: 25px 17px; min-height: 250px; }
  .feature-grid article:nth-child(3n) { border-right: 1px solid var(--line); }
  .feature-grid article:nth-child(2n) { border-right: 0; }
  .deliverable-list { grid-template-columns: 1fr 1fr; }
  .deliverables .section-heading h2 { font-size: 44px; }
  .package-grid { grid-template-columns: 1fr; gap: 28px; }
  .package-grid article { min-height: 0; }
  .package-grid article.popular { transform: none; }
  .project-packages { grid-template-columns: 1fr; }
  .project-packages article { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .2); padding: 35px 25px; }
  .contact-grid { grid-template-columns: 1fr; gap: 65px; }
  .contact-grid aside { grid-column: auto; display: block; }
  .next-steps .process-row { grid-template-columns: 1fr 1fr; }
  .final-cta { grid-template-columns: 1fr; padding: 75px 22px; }
  .final-cta h2 { font-size: 54px; }
  .faq-item button { font-size: 19px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; }
  .site-footer nav { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .site-footer .footer-links { justify-content: center; }
  .footer-meta { grid-column: auto; justify-content: center; text-align: center; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .js-motion .reveal-copy, .js-motion .reveal-card { opacity: 1 !important; transform: none !important; }
}
