@layer reset, tokens, base, layout, components, pages, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
  ul, ol { margin: 0; padding: 0; list-style: none; }
  button, input, textarea, select { font: inherit; }
  button { border: 0; }
  img, video { display: block; max-width: 100%; height: auto; }
  svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  dialog { padding: 0; border: 0; }
}

@layer tokens {
  :root {
    --ink: #11120f;
    --ink-soft: #23241f;
    --paper: #f4f2ec;
    --paper-2: #ebe8df;
    --paper-3: #ded9cf;
    --stone: #bdb6a8;
    --line: rgba(17, 18, 15, 0.16);
    --line-dark: rgba(255, 255, 255, 0.16);
    --white: #ffffff;
    --brass: #b49762;
    --brass-light: #d9c69e;
    --brass-text: #806437;
    --brass-dark: #765b30;
    --muted: #6f6d66;
    --danger: #9c3f34;
    --shell: 1240px;
    --gutter: clamp(20px, 3vw, 44px);
    --section: clamp(84px, 9vw, 138px);
    --section-small: clamp(56px, 6vw, 88px);
    --radius: 2px;
    --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --serif: Georgia, "Times New Roman", serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --shadow: 0 24px 70px rgba(17, 18, 15, 0.12);
  }
}

@layer base {
  html { background: var(--paper); color: var(--ink); }
  body {
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }
  body.menu-open { overflow: hidden; }
  ::selection { background: var(--brass-light); color: var(--ink); }
  h1, h2, h3 { font-weight: 500; letter-spacing: -0.045em; line-height: 1; }
  h1 em, h2 em { color: var(--brass); font-family: var(--serif); font-weight: 400; }
  p { max-width: 66ch; }
  button, a { -webkit-tap-highlight-color: transparent; }
  button { cursor: pointer; }
  input, textarea, select { color: var(--ink); }
  :focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }
}

@layer layout {
  .site-shell { width: min(var(--shell), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
  .section { padding-block: var(--section); border-top: 1px solid var(--line); }
  .section-dark { background: var(--ink); color: var(--paper); border-color: var(--line-dark); }
  .section-muted { background: var(--paper-2); }
  .intro-grid {
    display: grid;
    grid-template-columns: 68px minmax(0, 1.55fr) minmax(260px, .65fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: start;
  }
  .section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: clamp(32px, 6vw, 96px);
    align-items: end;
    margin-bottom: clamp(44px, 6vw, 82px);
  }
  .section-heading h2, .intro-grid h2 {
    max-width: 930px;
    font-size: clamp(2.55rem, 4.8vw, 5.3rem);
    line-height: .98;
  }
  .section-heading .heading-copy, .intro-grid > p {
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
  }
  .section-dark .heading-copy, .section-dark .section-heading > p { color: rgba(244, 242, 236, .66); }
  .section-index { color: var(--brass-text); font-size: .78rem; letter-spacing: .12em; padding-top: .5rem; }
  .section-dark .section-index { color: var(--brass-light); }
}

@layer components {
  .skip-link {
    position: fixed; z-index: 9999; left: 16px; top: 16px;
    transform: translateY(-180%); background: var(--white); color: var(--ink);
    padding: 12px 16px; border: 1px solid var(--ink); transition: transform .2s;
  }
  .skip-link:focus { transform: none; }
  .scroll-progress { position: fixed; inset: 0 0 auto; height: 2px; z-index: 110; pointer-events: none; }
  .scroll-progress i { display: block; height: 100%; width: 0; background: var(--brass); }

  .site-header {
    position: sticky; top: 0; z-index: 100;
    height: 78px; background: rgba(244, 242, 236, .94);
    border-bottom: 1px solid var(--line); backdrop-filter: blur(16px);
  }
  .header-grid {
    height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px;
  }
  .brand { justify-self: start; display: inline-flex; align-items: center; gap: 11px; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
  .brand img { width: 34px; height: 34px; object-fit: contain; }
  .desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.8vw, 42px); }
  .desktop-nav a { position: relative; padding-block: 10px; color: #56554f; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
  .desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
  .desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--ink); }
  .desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
  .header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
  .header-cta span { transition: transform .3s var(--ease); }
  .header-cta:hover span { transform: translate(3px, -3px); }
  .menu-toggle { display: none; justify-self: end; width: 44px; height: 44px; background: transparent; position: relative; }
  .menu-toggle i { position: absolute; left: 9px; right: 9px; height: 1px; background: var(--ink); transition: transform .3s, top .3s; }
  .menu-toggle i:first-child { top: 17px; }
  .menu-toggle i:last-child { top: 26px; }
  .menu-open .menu-toggle i:first-child { top: 22px; transform: rotate(45deg); }
  .menu-open .menu-toggle i:last-child { top: 22px; transform: rotate(-45deg); }
  .mobile-nav {
    position: fixed; z-index: 90; inset: 78px 0 0; display: grid; grid-template-rows: 1fr auto;
    background: var(--ink); color: var(--paper); padding: 32px var(--gutter); opacity: 0; visibility: hidden;
    transform: translateY(-12px); transition: opacity .3s, transform .3s, visibility .3s;
  }
  .menu-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav-inner { display: flex; flex-direction: column; justify-content: center; gap: 10px; }
  .mobile-nav-inner a { padding: 12px 0; border-bottom: 1px solid var(--line-dark); font-size: clamp(2rem, 9vw, 3.6rem); letter-spacing: -.04em; }
  .mobile-nav-inner a[aria-current="page"] { color: var(--brass-light); }
  .mobile-nav-foot { display: flex; justify-content: space-between; gap: 20px; color: rgba(244,242,236,.55); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

  .page-hero { padding-block: clamp(88px, 9vw, 138px) clamp(72px, 8vw, 116px); border-bottom: 1px solid var(--line); }
  .page-hero-grid {
    display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
    gap: clamp(40px, 8vw, 132px); align-items: end;
  }
  .page-hero h1 { max-width: 890px; font-size: clamp(3.5rem, 6.8vw, 6.4rem); line-height: .93; }
  .page-hero-side { display: grid; gap: 28px; align-self: end; padding-bottom: .45rem; }
  .page-hero-side > p { color: var(--muted); font-size: clamp(1.02rem, 1.35vw, 1.16rem); }
  .eyebrow, .section-label { margin-bottom: 18px; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
  .eyebrow-light, .section-label-light { color: var(--brass-light); }
  .mini-index { display: flex; flex-wrap: wrap; gap: 8px; }
  .mini-index span { padding: 7px 10px; border: 1px solid var(--line); color: #54534e; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }

  .button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 46px; padding: 12px 18px; border: 1px solid transparent; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: background .25s, color .25s, border-color .25s, transform .25s; }
  .button:hover { transform: translateY(-2px); }
  .button-dark { background: var(--ink); color: var(--paper); }
  .button-light { background: var(--paper); color: var(--ink); }
  .button-outline { border-color: var(--line); background: transparent; color: var(--ink); }
  .button-ghost { background: transparent; color: var(--ink); border-color: transparent; }
  .text-link, .text-link-light { display: inline-flex; align-items: center; gap: 12px; font-size: .76rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
  .text-link-light { color: var(--paper); }
  .text-link span, .text-link-light span { transition: transform .25s; }
  .text-link:hover span, .text-link-light:hover span { transform: translateX(4px); }

  .project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(30px, 4vw, 58px) clamp(20px, 2.5vw, 34px); }
  .project-card { min-width: 0; }
  .project-card a { display: block; }
  .project-card figure { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--paper-3); }
  .project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s; }
  .project-card:hover img { transform: scale(1.025); }
  .project-card-arrow { position: absolute; right: 12px; top: 12px; display: grid; place-items: center; width: 34px; height: 34px; background: rgba(244,242,236,.92); opacity: 0; transform: translateY(5px); transition: opacity .3s, transform .3s; }
  .project-card:hover .project-card-arrow { opacity: 1; transform: none; }
  .project-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; color: var(--muted); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
  .project-number { color: var(--brass-text); }
  .project-card h3 { margin-top: 10px; font-size: clamp(1.5rem, 2vw, 2.05rem); }
  .project-card p { margin-top: 10px; color: var(--muted); font-size: .92rem; line-height: 1.55; }
  

  .brand-marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper); }
  .brand-marquee > div { display: flex; width: max-content; animation: marquee 28s linear infinite; }
  .brand-marquee span { padding: 18px 24px; border-right: 1px solid var(--line); color: #56554f; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
  @keyframes marquee { to { transform: translateX(-45%); } }

  .closing-cta { padding-block: clamp(72px, 8vw, 110px); background: var(--ink); color: var(--paper); }
  .closing-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: clamp(44px, 8vw, 120px); align-items: end; }
  .closing-grid h2 { font-size: clamp(2.8rem, 5.5vw, 5.8rem); line-height: .95; }
  .closing-action { display: grid; gap: 28px; justify-items: start; }
  .closing-action p { color: rgba(244,242,236,.63); }

  .site-footer { background: #0a0b09; color: var(--paper); border-top: 1px solid var(--line-dark); }
  .footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(44px, 6vw, 84px);
    padding-block: clamp(54px, 6vw, 76px);
    align-items: end;
    overflow: hidden;
  }
  .footer-identity { min-width: 0; }
  .footer-identity img {
    display: block;
    width: clamp(108px, 9vw, 132px);
    height: auto;
    max-height: 132px;
    aspect-ratio: 1159 / 1126;
    object-fit: contain;
    object-position: left center;
    filter: invert(1);
    opacity: .95;
  }
  .footer-identity p { margin-top: 20px; color: rgba(244,242,236,.54); font-size: .9rem; }
  .footer-cta { justify-self: end; display: grid; gap: 10px; text-align: right; }
  .footer-cta > span { color: rgba(244,242,236,.52); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
  .footer-cta a { font-family: var(--serif); font-size: clamp(2rem, 3.8vw, 4rem); }
  .footer-cta b { display: inline-block; font-family: var(--sans); font-size: .8em; transition: transform .3s; }
  .footer-cta a:hover b { transform: translate(4px,-4px); }
  .footer-meta { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; padding-block: 22px; border-top: 1px solid var(--line-dark); color: rgba(244,242,236,.48); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
  .footer-meta nav { display: flex; gap: 22px; }
  .footer-meta > span:last-child { justify-self: end; }

  .media-viewer { width: min(1180px, calc(100% - 32px)); max-height: calc(100dvh - 32px); margin: auto; background: #080907; color: var(--paper); box-shadow: var(--shadow); overflow: visible; }
  .media-viewer::backdrop { background: rgba(5,6,5,.88); backdrop-filter: blur(8px); }
  .viewer-stage { min-height: 220px; display: grid; place-items: center; background: #050605; }
  .viewer-stage img, .viewer-stage video { max-width: 100%; max-height: calc(100dvh - 120px); object-fit: contain; }
  .viewer-caption { padding: 14px 58px 16px; color: rgba(244,242,236,.65); font-size: .75rem; letter-spacing: .05em; }
  .viewer-close, .viewer-nav { position: absolute; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; background: rgba(17,18,15,.88); color: var(--paper); }
  .viewer-close { right: 8px; top: 8px; font-size: 1.5rem; }
  .viewer-nav { top: 50%; transform: translateY(-50%); }
  .viewer-prev { left: 8px; } .viewer-next { right: 8px; }
  .viewer-nav[hidden] { display: none; }

  .js .reveal, .js .reveal-first { opacity: 0; transform: translateY(20px); }
  .js .reveal.is-visible, .js .reveal-first.is-visible { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
}

@layer pages {
  /* Home */
  .home-hero { position: relative; min-height: 720px; background: var(--ink); color: var(--paper); overflow: hidden; }
  .home-grid, .about-grid-bg { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, #000 0, transparent 96%); }
  .home-hero::after { content: ""; position: absolute; right: -14vw; top: -30vw; width: 64vw; aspect-ratio: 1; border: 1px solid rgba(180,151,98,.22); border-radius: 50%; }
  .home-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr); gap: clamp(48px, 7vw, 112px); align-items: center; padding-block: clamp(78px, 8vw, 120px) 54px; }
  .home-hero h1 { max-width: 940px; font-size: clamp(3.4rem, 5.7vw, 5.8rem); line-height: .92; text-wrap: balance; }
  .home-hero h1 em { display: block; }
  .hero-lede { margin-top: 28px; max-width: 620px; color: rgba(244,242,236,.68); font-size: clamp(1.05rem, 1.45vw, 1.23rem); }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 20px 28px; align-items: center; margin-top: 34px; }
  .hero-sequence { display: flex; align-items: center; gap: 12px; margin-top: 52px; color: rgba(244,242,236,.55); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
  .hero-sequence span { display: flex; align-items: center; gap: 6px; }
  .hero-sequence b { color: var(--brass-light); }
  .hero-sequence i { width: 28px; height: 1px; background: var(--line-dark); }
  .capability-ribbon { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding-block: 22px 26px; color: rgba(244,242,236,.48); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
  .capability-ribbon i { flex: 1; height: 1px; background: var(--line-dark); }
  .intro-block { background: var(--paper); }
  .proof-section { background: var(--paper); }
  .case-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
  .case-tabs button { padding: 9px 12px; background: transparent; border: 1px solid var(--line); color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
  .case-tabs button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .case-stage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1120px; margin-inline: auto; }
  .case-stage figure { min-width: 0; }
  .case-stage figcaption { margin-bottom: 10px; font-size: .62rem; letter-spacing: .1em; color: var(--muted); }
  .case-stage img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: contain; background: #11120f; border: 1px solid rgba(17,18,15,.12); }
  .case-caption { display: grid; grid-template-columns: .8fr 1.2fr auto; gap: 30px; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
  .case-caption small { color: var(--brass-text); font-size: .62rem; letter-spacing: .1em; }
  .case-caption h3 { margin-top: 5px; font-size: 2rem; }
  .case-caption p { color: var(--muted); }
  .case-caption a { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
  .featured-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .section-actions { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line); }
  .disciplines-section { background: var(--ink); color: var(--paper); }
  .discipline-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border: 1px solid var(--line-dark); }
  .discipline-card { min-height: 230px; padding: 24px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
  .discipline-card:nth-child(4n) { border-right: 0; }
  .discipline-card:nth-last-child(-n/**/+4) { border-bottom: 0; }
  .discipline-card > span { color: var(--brass-light); font-size: .64rem; }
  .discipline-card h3 { margin-top: 48px; font-size: 1.55rem; }
  .discipline-card p { margin-top: 12px; color: rgba(244,242,236,.55); font-size: .88rem; }
  .motion-section { background: #1a1b17; color: var(--paper); }
  .motion-grid { display: grid; grid-template-columns: minmax(0,.72fr) minmax(440px,1.28fr); gap: clamp(48px,8vw,120px); align-items: center; }
  .motion-copy h2 { font-size: clamp(2.8rem,5vw,5.2rem); }
  .motion-copy > p:last-of-type { margin-top: 24px; color: rgba(244,242,236,.6); }
  .motion-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
  .motion-tags span { border: 1px solid var(--line-dark); padding: 8px 10px; font-size: .6rem; letter-spacing: .1em; }
  .motion-media { position: relative; aspect-ratio: 16/9; background: #080907; overflow: hidden; }
  .motion-media video { width: 100%; height: 100%; object-fit: cover; }
  .motion-media button { position: absolute; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 10px; background: rgba(244,242,236,.92); color: var(--ink); padding: 11px 14px; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
  
  
  
  
  
  
  
  

  /* Services */
  .services-intro { background: var(--paper-2); }
  .services-list { border-top: 1px solid var(--line); }
  .service-row { display: grid; grid-template-columns: 72px minmax(0,1.05fr) minmax(300px,.95fr); gap: clamp(26px,5vw,72px); padding-block: clamp(48px,6vw,82px); border-bottom: 1px solid var(--line); align-items: start; }
  .service-number { color: var(--brass-text); font-size: .7rem; letter-spacing: .1em; }
  .service-summary h2 { font-size: clamp(2.1rem,3.5vw,3.8rem); }
  .service-summary p { margin-top: 18px; color: var(--muted); }
  .service-case-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
  .service-case-links a { padding: 7px 10px; border: 1px solid var(--line); color: var(--ink); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: background .2s, color .2s; }
  .service-case-links a:hover { background: var(--ink); color: var(--paper); }
  .service-row ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; border-top: 1px solid var(--line); }
  .service-row li { padding: 12px 0; border-bottom: 1px solid var(--line); color: #464640; font-size: .82rem; }
  .scope-band { padding-block: var(--section); background: var(--ink); color: var(--paper); }
  .scope-track { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 20px; }
  .scope-track div { display: grid; gap: 8px; }
  .scope-track span { color: var(--brass-light); font-size: .63rem; letter-spacing: .1em; }
  .scope-track b { font-size: .85rem; font-weight: 500; }
  .scope-track i { width: 34px; height: 1px; background: var(--line-dark); }
  .material-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px,8vw,120px); align-items: start; }
  .material-grid h2 { font-size: clamp(2.7rem,5vw,5.1rem); }
  .material-grid > div:first-child > p:last-child { margin-top: 24px; color: var(--muted); }
  .material-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
  .material-list span { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: .82rem; }
  .material-list span:nth-child(odd) { padding-right: 18px; }
  .material-list span:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--line); }
  
  
  
  
  
  
  
  .faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px,8vw,120px); align-items: start; }
  .faq-grid .section-heading { display: block; margin-bottom: 0; }
  .faq-list details { border-top: 1px solid var(--line); }
  .faq-list details:last-child { border-bottom: 1px solid var(--line); }
  .faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; font-weight: 600; }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary span { transition: transform .3s; }
  .faq-list details[open] summary span { transform: rotate(45deg); }
  .faq-list details p { padding: 0 50px 24px 0; color: var(--muted); }

  /* Projects */
  .project-proof { border-bottom: 1px solid var(--line); }
  .project-proof .site-shell { display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; padding-block: 20px; }
  .project-proof p { color: var(--muted); font-size: .62rem; letter-spacing: .1em; }
  .brand-proof { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: flex-end; }
  .brand-proof span { font-size: .7rem; }
  .portfolio-toolbar { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 34px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
  .filter-bar { display: flex; flex-wrap: wrap; gap: 8px; }
  .filter-bar button { padding: 8px 11px; background: transparent; border: 1px solid var(--line); color: var(--muted); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
  .filter-bar button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  [data-project-count] { color: var(--muted); font-size: .7rem; }
  .path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .path-card { display: grid; grid-template-columns: 50px 1fr auto; gap: 22px; align-items: start; padding: 30px; border: 1px solid var(--line); transition: background .3s, color .3s; }
  .path-card:hover { background: var(--ink); color: var(--paper); }
  .path-card > span { color: var(--brass-text); font-size: .65rem; }
  .path-card:hover > span { color: var(--brass-light); }
  .path-card small { color: var(--muted); font-size: .6rem; letter-spacing: .1em; }
  .path-card h3 { margin-top: 12px; font-size: 2rem; }
  .path-card p { margin-top: 12px; color: var(--muted); font-size: .9rem; }
  .path-card:hover p, .path-card:hover small { color: rgba(244,242,236,.62); }

  /* About */
  .about-hero { position: relative; min-height: 720px; background: var(--ink); color: var(--paper); overflow: hidden; }
  .about-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(54px,8vw,120px); align-items: center; padding-block: clamp(82px,8vw,124px); }
  .about-copy h1 { max-width: 760px; font-size: clamp(3.8rem,6.8vw,6.7rem); line-height: .91; }
  .about-copy > p:not(.eyebrow) { margin-top: 28px; color: rgba(244,242,236,.68); font-size: 1.08rem; }
  .about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
  .about-tags span { padding: 8px 10px; border: 1px solid var(--line-dark); color: rgba(244,242,236,.58); font-size: .6rem; letter-spacing: .09em; }
  
  
  
  
  
  
  
  
  
  
  
  .workshop-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2vw, 28px); align-items: start; }
  .workshop-grid figure { min-width: 0; display: grid; grid-template-rows: auto 1fr; overflow: visible; background: transparent; }
  .workshop-grid figure:first-child { grid-row: auto; }
  .workshop-grid img { width: 100%; height: auto; min-height: 0; aspect-ratio: 4 / 5; object-fit: cover; background: var(--paper-3); }
  .workshop-grid figure:nth-child(1) img { object-position: 50% 58%; }
  .workshop-grid figure:nth-child(2) img { object-position: 50% 48%; }
  .workshop-grid figure:nth-child(3) img { object-position: 50% 50%; }
  .workshop-grid figcaption { position: static; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px 18px; align-items: start; min-height: 92px; padding: 14px 0 0; border-top: 1px solid var(--line); background: transparent; color: var(--ink); }
  .workshop-grid figcaption span { color: var(--brass-text); font-size: .56rem; letter-spacing: .11em; white-space: nowrap; }
  .workshop-grid figcaption b { max-width: 26ch; color: var(--ink); font-size: .82rem; font-weight: 600; line-height: 1.45; }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

  /* Contact */
  .quote-layout { display: grid; grid-template-columns: 360px minmax(0,1fr); gap: clamp(44px,7vw,104px); align-items: start; }
  .quote-aside { position: sticky; top: 108px; }
  .quote-aside h2 { font-size: clamp(2.4rem,4vw,4.3rem); }
  .quote-aside > p:not(.section-label) { margin-top: 22px; color: var(--muted); }
  .quote-progress { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; margin-top: 36px; }
  .quote-progress > span { height: 2px; background: var(--paper-3); }
  .quote-progress i { display: block; width: 25%; height: 100%; background: var(--brass); transition: width .4s var(--ease); }
  .quote-progress b { font-size: .72rem; }
  .quote-live { margin-top: 30px; border-top: 1px solid var(--line); }
  .quote-live > div { display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .75rem; }
  .quote-live dt { color: var(--muted); }
  .quote-live dd { text-align: right; }
  .quote-wizard { min-width: 0; }
  .quote-step { display: none; }
  .quote-step.active { display: block; animation: stepIn .45s var(--ease); }
  @keyframes stepIn { from { opacity: 0; transform: translateY(10px); } }
  .form-head { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
  .form-head span { color: var(--brass-text); font-size: .65rem; letter-spacing: .1em; }
  .form-head b { font-size: 1rem; }
  .choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
  .choice-grid button { min-height: 142px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto 1fr; gap: 8px 16px; align-content: start; padding: 20px; background: transparent; border: 1px solid var(--line); text-align: left; }
  .choice-grid button.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .choice-grid i { color: var(--brass-text); font-style: normal; font-size: .63rem; }
  .choice-grid button.selected i { color: var(--brass-light); }
  .choice-grid strong { font-size: 1.05rem; }
  .choice-grid span { grid-column: 2; color: var(--muted); font-size: .8rem; }
  .choice-grid button.selected span { color: rgba(244,242,236,.56); }
  .choice-grid.compact { grid-template-columns: repeat(3,1fr); }
  .choice-grid.compact button { display: block; min-height: 120px; }
  .choice-grid.compact span { display: block; margin-top: 8px; }
  .fields-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px; }
  .fields-grid label, .field-full, .file-field { display: grid; gap: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
  .fields-grid .full { grid-column: 1/-1; }
  input, textarea, select { width: 100%; min-height: 48px; border: 1px solid var(--line); background-color: rgba(255,255,255,.38); padding: 13px 14px; border-radius: 0; outline: none; text-transform: none; letter-spacing: normal; }
  textarea { resize: vertical; }
  input:focus, textarea:focus, select:focus { border-color: var(--brass); box-shadow: 0 0 0 1px var(--brass); }
  .check-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 22px; }
  .check-grid label { cursor: pointer; }
  .check-grid input { position: absolute; opacity: 0; width: 1px; height: 1px; }
  .check-grid span { display: grid; place-items: center; min-height: 54px; border: 1px solid var(--line); font-size: .72rem; }
  .check-grid input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .check-grid input:focus-visible + span { outline: 3px solid var(--brass); outline-offset: 3px; }
  [aria-invalid="true"] { border-color: var(--danger) !important; box-shadow: 0 0 0 1px var(--danger); }
  .choice-grid[aria-invalid="true"] { padding: 3px; }
  .field-full, .file-field { margin-top: 18px; }
  .file-field small { font-weight: 400; color: var(--muted); }
  .wizard-actions { display: flex; justify-content: space-between; gap: 16px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
  .form-error { min-height: 20px; margin-top: 12px; color: var(--danger); font-size: .76rem; }
  .quote-result { border: 1px solid var(--line); padding: clamp(28px,5vw,58px); }
  .result-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 32px; border-radius: 50%; background: var(--ink); color: var(--paper); }
  .quote-result h2 { font-size: clamp(2.4rem,4vw,4.2rem); }
  .quote-result > p:not(.section-label) { margin-top: 18px; color: var(--muted); }
  .quote-result pre { margin-top: 26px; padding: 20px; background: var(--paper-2); border: 1px solid var(--line); white-space: pre-wrap; font: .76rem/1.65 ui-monospace, SFMono-Regular, Menlo, monospace; }
  .result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
  .next-steps { background: var(--paper-2); }
  .next-steps-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); }
  .next-steps-grid li { min-height: 230px; padding: 24px; border-right: 1px solid var(--line); }
  .next-steps-grid li:last-child { border-right: 0; }
  .next-steps-grid span { color: var(--brass-text); font-size: .65rem; }
  .next-steps-grid h3 { margin-top: 52px; font-size: 1.4rem; }
  .next-steps-grid p { margin-top: 12px; color: var(--muted); font-size: .85rem; }

  /* Render / reality */
  .compare-cases { background: var(--paper); }
  .compare-case + .compare-case { margin-top: var(--section); padding-top: var(--section); border-top: 1px solid var(--line); }
  .compare-head { display: grid; grid-template-columns: 58px 1fr auto; gap: 24px; align-items: end; margin-bottom: 28px; }
  .compare-head > span { color: var(--brass-text); font-size: .68rem; }
  .compare-head small { color: var(--muted); font-size: .62rem; letter-spacing: .1em; }
  .compare-head h2 { margin-top: 8px; font-size: clamp(2.6rem,4.8vw,5rem); }
  .compare-head a { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .compare-slider { position: relative; width: min(100%,1120px); aspect-ratio: 3 / 2; margin-inline: auto; overflow: hidden; background: #11120f; border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(17,18,15,.08); }
  .compare-slider img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; background: #11120f; }
  .compare-base, .compare-overlay { position: absolute; inset: 0; }
  .compare-overlay { clip-path: inset(0 0 0 var(--split,50%)); }
  .compare-line { position: absolute; left: var(--split,50%); top: 0; bottom: 0; width: 1px; background: var(--paper); pointer-events: none; }
  .compare-line i { position: absolute; top: 50%; left: 50%; width: 42px; height: 42px; border-radius: 50%; background: var(--paper); transform: translate(-50%,-50%); box-shadow: 0 4px 20px rgba(0,0,0,.2); }
  .compare-line i::before, .compare-line i::after { content: ""; position: absolute; top: 50%; width: 7px; height: 7px; border-left: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
  .compare-line i::before { left: 11px; transform: translateY(-50%) rotate(45deg); }
  .compare-line i::after { right: 11px; transform: translateY(-50%) rotate(225deg); }
  .compare-slider input { position: absolute; inset: 0; z-index: 4; opacity: 0; cursor: ew-resize; }
  .compare-label { position: absolute; top: 14px; z-index: 3; padding: 7px 9px; background: rgba(17,18,15,.82); color: var(--paper); font-size: .58rem; letter-spacing: .1em; }
  .render-label { left: 14px; } .real-label { right: 14px; }
  .compare-copy { margin-top: 20px; color: var(--muted); font-size: 1rem; }

  /* Archive */
  .archive-toolbar { display: grid; grid-template-columns: minmax(260px,1fr) auto auto; gap: 18px; align-items: end; margin-bottom: 34px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .archive-search { display: grid; gap: 7px; color: var(--muted); font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; }
  .archive-search input { max-width: 420px; background: transparent; }
  .archive-filters { display: flex; flex-wrap: wrap; gap: 7px; }
  .archive-filters button { padding: 8px 10px; background: transparent; border: 1px solid var(--line); color: var(--muted); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
  .archive-filters button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  [data-archive-count] { color: var(--muted); font-size: .7rem; white-space: nowrap; }
  .archive-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
  .archive-card button { width: 100%; background: transparent; text-align: left; }
  .archive-card figure { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--paper-3); }
  .archive-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
  .archive-card:hover img { transform: scale(1.025); }
  .archive-card figcaption { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; gap: 12px; padding: 28px 12px 10px; background: linear-gradient(transparent,rgba(0,0,0,.74)); color: var(--paper); font-size: .6rem; letter-spacing: .06em; }
  
  .archive-more { display: flex; justify-content: center; margin-top: 38px; }
  .archive-note { background: var(--paper-2); }

  /* Project detail */
  .project-hero { padding-block: clamp(62px,7vw,108px); border-bottom: 1px solid var(--line); }
  .project-hero-grid { display: grid; grid-template-columns: minmax(320px,.72fr) minmax(0,1.28fr); gap: clamp(44px,8vw,118px); align-items: center; }
  .project-title { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
  .back-link { margin-bottom: 46px; color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
  .project-title h1 { font-size: clamp(3.7rem,7vw,7.2rem); }
  .project-title > p:not(.eyebrow) { margin-top: 24px; color: var(--muted); font-size: 1.05rem; }
  .project-title .text-link { margin-top: 30px; }
  .project-hero-media { aspect-ratio: 3/2; overflow: hidden; background: var(--paper-3); }
  .project-hero-media img { width: 100%; height: 100%; object-fit: cover; }
  .project-facts { border-bottom: 1px solid var(--line); }
  .facts-grid { display: grid; grid-template-columns: repeat(3,1fr); }
  .facts-grid > div { display: grid; gap: 8px; padding: 22px 20px; border-right: 1px solid var(--line); }
  .facts-grid > div:first-child { padding-left: 0; }
  .facts-grid > div:last-child { border-right: 0; }
  .facts-grid span { color: var(--muted); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
  .facts-grid b { font-size: .82rem; font-weight: 600; }
  .reading-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(48px,8vw,120px); }
  .reading-grid h2 { font-size: clamp(2rem,3.5vw,3.8rem); line-height: 1.1; }
  .reading-grid aside { padding-left: 28px; border-left: 1px solid var(--line); }
  .reading-grid aside span { color: var(--brass-text); font-size: .62rem; letter-spacing: .1em; }
  .reading-grid aside p { margin-top: 18px; color: var(--muted); }
  .execution-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px,8vw,120px); margin-top: var(--section-small); padding-top: var(--section-small); border-top: 1px solid var(--line); }
  .execution-intro h3 { font-size: clamp(2rem,3.5vw,3.7rem); }
  .execution-grid ul { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
  .execution-grid li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .82rem; }
  .execution-grid li:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--line); }
  .project-comparison { background: var(--ink); color: var(--paper); }
  .project-compare-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; max-width: 1120px; margin-inline: auto; }
  .project-compare-grid > *, .detail-gallery > * { min-width: 0; }
  .project-compare-grid figcaption { margin-bottom: 10px; color: var(--brass-light); font-size: .62rem; letter-spacing: .1em; }
  .project-compare-grid img { display: block; width: 100%; max-width: 100%; min-width: 0; aspect-ratio: 3 / 2; object-fit: contain; object-position: center; background: #11120f; border: 1px solid rgba(244,242,236,.14); }
  .project-gallery { background: var(--paper-2); }
  .detail-gallery { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
  .gallery-item button { position: relative; width: 100%; max-width: 100%; min-width: 0; background: transparent; }
  .gallery-item img { width: 100%; max-width: 100%; min-width: 0; aspect-ratio: 3/2; object-fit: cover; }
  .gallery-item button > span { position: absolute; right: 10px; bottom: 10px; padding: 8px 10px; background: rgba(244,242,236,.92); color: var(--ink); font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; }
  .next-project { padding-block: var(--section-small); background: var(--paper); border-top: 1px solid var(--line); }
  .next-grid { display: grid; grid-template-columns: 1fr minmax(280px,520px); gap: 60px; align-items: center; }
  .next-grid > div > span { color: var(--muted); font-size: .62rem; letter-spacing: .1em; }
  .next-grid h2 { margin-top: 16px; font-size: clamp(3rem,5vw,5.5rem); }
  .next-grid p { margin-top: 10px; color: var(--muted); }
  .next-thumb { position: relative; display: block; aspect-ratio: 3/2; overflow: hidden; }
  .next-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
  .next-thumb:hover img { transform: scale(1.025); }
  .next-thumb i { position: absolute; right: 10px; top: 10px; display: grid; place-items: center; width: 38px; height: 38px; background: var(--paper); font-style: normal; }

  /* 404 */
  .not-found { min-height: 70vh; display: grid; align-items: center; padding-block: var(--section); }
  .not-found > div > span { color: var(--brass-text); font-size: .72rem; letter-spacing: .12em; }
  .not-found h1 { max-width: 900px; font-size: clamp(3.5rem,7vw,7rem); }
  .not-found > div > div { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 36px; }
}

@layer utilities {
  [hidden] { display: none !important; }
  @media (max-width: 1100px) {
    .desktop-nav, .header-cta { display: none; }
    .menu-toggle { display: block; }
    .header-grid { grid-template-columns: 1fr auto; }
    .home-hero-inner, .about-hero-inner { grid-template-columns: 1fr; }
    .home-hero { min-height: auto; }
    .project-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .discipline-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .discipline-card:nth-child(4n) { border-right: 1px solid var(--line-dark); }
    .discipline-card:nth-child(2n) { border-right: 0; }
    .discipline-card:nth-last-child(-n/**/+4) { border-bottom: 1px solid var(--line-dark); }
    .discipline-card:nth-last-child(-n/**/+2) { border-bottom: 0; }
    
    
    
    
    
    
    .next-steps-grid { grid-template-columns: repeat(2,1fr); }
    .next-steps-grid li:nth-child(2) { border-right: 0; }
    .next-steps-grid li:nth-child(-n/**/+2) { border-bottom: 1px solid var(--line); }
    
    
    
    
    
    .archive-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  }

  @media (max-width: 820px) {
    :root { --gutter: 20px; --section: 82px; --section-small: 58px; }
    .site-header { height: 70px; }
    .mobile-nav { inset: 70px 0 0; }
    .page-hero-grid, .section-heading, .intro-grid, .closing-grid, .material-grid, .faq-grid, .reading-grid, .execution-grid, .quote-layout, .motion-grid { grid-template-columns: 1fr; }
    .page-hero { padding-block: 72px; }
    .page-hero h1 { font-size: clamp(3rem,12vw,5.2rem); }
    .page-hero-side { max-width: 620px; }
    .section-heading { align-items: start; }
    .section-index { display: none; }
    .home-hero-inner, .about-hero-inner { padding-block: 70px 42px; }
    .home-hero h1, .about-copy h1 { font-size: clamp(3.2rem,11vw,5rem); }
    .hero-sequence { flex-wrap: wrap; }
    .capability-ribbon { justify-content: flex-start; flex-wrap: wrap; }
    .capability-ribbon i { flex: 0 0 18px; }
    .case-caption { grid-template-columns: 1fr; }
    .case-stage { grid-template-columns: 1fr; }
    .featured-grid { grid-template-columns: 1fr 1fr; }
    .motion-media { min-width: 0; }
    .service-row { grid-template-columns: 52px 1fr; }
    .service-row ul { grid-column: 2; }
    .scope-track { grid-template-columns: 1fr; gap: 18px; }
    .scope-track i { width: 1px; height: 22px; margin-left: 6px; }
    
    
    
    
    
    
    
    
    .quote-aside { position: static; }
    .archive-toolbar { grid-template-columns: 1fr; align-items: start; }
    .archive-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .project-hero-grid { grid-template-columns: 1fr; }
    .project-title { min-height: auto; }
    .back-link { margin-bottom: 30px; }
    .project-hero-media { order: -1; }
    .next-grid { grid-template-columns: 1fr; }
    .project-compare-grid { grid-template-columns: minmax(0,1fr); }
    .footer-main, .footer-meta { grid-template-columns: 1fr; }
    .footer-identity img { width: 104px; max-height: 104px; }
    .footer-cta { justify-self: start; text-align: left; }
    .footer-meta nav { flex-wrap: wrap; }
    .footer-meta > span:last-child { justify-self: start; }
  }

  @media (max-width: 600px) {
    body { font-size: 15px; }
    .brand span { display: none; }
    .page-hero h1 { font-size: clamp(2.8rem,14vw,4.4rem); }
    .project-title h1 { max-width: 100%; font-size: clamp(2.7rem,13vw,3.6rem); overflow-wrap: break-word; }
    .home-hero h1, .about-copy h1 { font-size: clamp(2.65rem,12.2vw,3.9rem); }
    .home-hero-inner { gap: 48px; }
    .project-grid, .featured-grid { grid-template-columns: 1fr; }
    .project-card-arrow { opacity: 1; transform: none; }
    .discipline-grid, .next-steps-grid { grid-template-columns: 1fr; }
    .discipline-card, .next-steps-grid li { border-right: 0 !important; border-bottom: 1px solid var(--line); }
    .discipline-card:last-child, .next-steps-grid li:last-child { border-bottom: 0 !important; }
    
    
    
    
    .section-actions { align-items: flex-start; flex-direction: column; }
    .service-row { grid-template-columns: 42px 1fr; }
    .service-row ul { grid-template-columns: 1fr; }
    .service-row li { grid-column: 1; padding-left: 0 !important; border-left: 0 !important; }
    .material-list { grid-template-columns: 1fr; }
    .material-list span { padding-inline: 0 !important; border-left: 0 !important; }
    .project-proof .site-shell { grid-template-columns: 1fr; }
    .brand-proof { justify-content: flex-start; }
    .portfolio-toolbar { align-items: flex-start; flex-direction: column; }
    .path-grid { grid-template-columns: 1fr; }
    .workshop-grid { grid-template-columns: 1fr; }
    .workshop-grid figure:first-child { grid-row: auto; }
    .workshop-grid img { min-height: 0; aspect-ratio: 4 / 3; }
    
    
    
    
    
    .choice-grid, .choice-grid.compact, .fields-grid { grid-template-columns: 1fr; }
    .choice-grid button { min-height: 120px; }
    .check-grid { grid-template-columns: 1fr 1fr; }
    .wizard-actions { align-items: stretch; flex-direction: column-reverse; }
    .wizard-actions .button { width: 100%; }
    .archive-grid { grid-template-columns: 1fr; }
    .archive-card figure { aspect-ratio: 3/2; }
    .facts-grid { grid-template-columns: 1fr; }
    .facts-grid > div { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .facts-grid > div:last-child { border-bottom: 0; }
    .execution-grid ul { grid-template-columns: 1fr; }
    .execution-grid li:nth-child(even) { padding-left: 0; border-left: 0; }
    .detail-gallery { grid-template-columns: minmax(0,1fr); }
    .compare-head { grid-template-columns: 36px 1fr; }
    .compare-head a { grid-column: 2; }
    .compare-slider { aspect-ratio: 3/2; }
    .footer-cta a { font-size: 2.2rem; }
    .viewer-nav { display: grid; width: 44px; height: 44px; touch-action: manipulation; }
    .viewer-caption { padding-inline: 16px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .brand-marquee > div { animation: none; flex-wrap: wrap; width: auto; }
    .js .reveal, .js .reveal-first { opacity: 1; transform: none; }
  }
}


/* V10.4 comparison framing */
.compare-case { max-width: 1120px; margin-inline: auto; }
.compare-copy { max-width: 780px; }
.compare-slider::after { content: ""; position: absolute; inset: 0; z-index: 2; border: 1px solid rgba(244,242,236,.08); pointer-events: none; }
@media (max-width: 760px) {
  .case-stage { gap: 12px; }
  .compare-slider { width: 100%; box-shadow: none; }
}

/* V11 production refinement */
@layer base {
  h1, h2, h3 { text-wrap: balance; }
  section[id], [id^="servicio-"] { scroll-margin-top: 100px; }
  select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
}

@layer components {
  .contact-links { display: flex; flex-wrap: wrap; gap: 8px; }
  .contact-links[hidden] { display: none; }
  .contact-links a { padding: 8px 11px; border: 1px solid var(--line); color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .direct-contact { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
  .direct-contact[hidden] { display: none; }
  .selected-files { display: grid; gap: 8px; margin-top: 4px; }
  .selected-files[hidden] { display: none; }
  .selected-file { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-width: 0; padding: 11px 12px; border: 1px solid var(--line); background: rgba(255,255,255,.24); }
  .selected-file-copy { display: grid; gap: 2px; min-width: 0; text-transform: none; letter-spacing: 0; }
  .selected-file-name { overflow: hidden; color: var(--ink); font-size: .75rem; font-weight: 700; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
  .selected-file-meta { color: var(--muted); font-size: .66rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .selected-file-remove { flex: 0 0 auto; min-height: 36px; padding: 7px 10px; border: 1px solid var(--line); background: transparent; color: var(--ink); font-size: .64rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
  .selected-file-remove:hover { border-color: var(--ink); }
  .file-status { display: block; margin-top: 8px; color: var(--muted); font-size: .7rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .file-status[data-state="error"] { color: var(--danger); }
  .file-status[data-state="ready"] { color: var(--ink-soft); }
  .project-service-link { border-bottom: 1px solid var(--line); background: var(--paper-2); }
  .project-service-link .site-shell { min-height: 54px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
  .project-service-link span { color: var(--muted); font-size: .62rem; letter-spacing: .11em; text-transform: uppercase; }
  .project-service-link a { display: inline-flex; align-items: center; gap: 12px; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
  .project-service-link b { transition: transform .25s var(--ease); }
  .project-service-link a:hover b { transform: translateX(4px); }
}

@layer pages {
  .partner-section { background: var(--paper); }
  .partner-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border: 1px solid var(--line); }
  .partner-grid article { min-height: 260px; padding: clamp(22px,2.6vw,34px); border-right: 1px solid var(--line); }
  .partner-grid article:last-child { border-right: 0; }
  .partner-grid span { color: var(--brass-text); font-size: .64rem; letter-spacing: .1em; }
  .partner-grid h3 { margin-top: 70px; font-size: clamp(1.5rem,2.4vw,2.3rem); }
  .partner-grid p { margin-top: 14px; color: var(--muted); font-size: .9rem; }

  
  
  
  
  
  

  .collaboration-section { padding-block: var(--section); background: var(--ink); color: var(--paper); }
  .collaboration-section .heading-copy { color: rgba(244,242,236,.62); }
  .collaboration-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border: 1px solid var(--line-dark); }
  .collaboration-grid article { min-height: 300px; padding: clamp(24px,3vw,40px); border-right: 1px solid var(--line-dark); }
  .collaboration-grid article:last-child { border-right: 0; }
  .collaboration-grid small { color: var(--brass-light); font-size: .61rem; letter-spacing: .1em; }
  .collaboration-grid h3 { margin-top: 78px; font-size: clamp(1.55rem,2.5vw,2.5rem); }
  .collaboration-grid p { margin-top: 14px; color: rgba(244,242,236,.58); }

  .name-section { background: var(--paper-2); }
  .name-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border: 1px solid var(--line); }
  .name-grid article { min-height: 250px; padding: clamp(24px,3vw,38px); border-right: 1px solid var(--line); }
  .name-grid article:last-child { border-right: 0; }
  .name-grid span { color: var(--brass-text); font-size: .62rem; letter-spacing: .12em; }
  .name-grid h3 { margin-top: 74px; font-size: clamp(1.7rem,2.8vw,2.8rem); }
  .name-grid p { margin-top: 14px; color: var(--muted); }

  .quote-result .result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
  .quote-result .result-actions .button { flex: 0 0 auto; }
}

@media (max-width: 1100px) {
  .partner-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .partner-grid article:nth-child(2) { border-right: 0; }
  .partner-grid article:nth-child(-n/**/+2) { border-bottom: 1px solid var(--line); }
  
  
}

@media (max-width: 820px) {
  
  
  .collaboration-grid, .name-grid { grid-template-columns: 1fr; }
  .collaboration-grid article, .name-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .name-grid article { border-bottom-color: var(--line); }
  .collaboration-grid article:last-child, .name-grid article:last-child { border-bottom: 0; }
  .collaboration-grid h3, .name-grid h3 { margin-top: 42px; }
  .project-service-link .site-shell { align-items: flex-start; flex-direction: column; padding-block: 14px; gap: 8px; }
}

@media (max-width: 600px) {
  .partner-grid { grid-template-columns: 1fr; }
  .partner-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .partner-grid article:last-child { border-bottom: 0; }
  .partner-grid h3 { margin-top: 42px; }
  
  .quote-result .result-actions { flex-direction: column; }
  .quote-result .result-actions .button { width: 100%; }
}

@media print {
  body.print-brief { background: #fff !important; color: #111 !important; }
  body.print-brief > *:not(main), body.print-brief main > *:not(.quote-section) { display: none !important; }
  body.print-brief .quote-section { padding: 0 !important; border: 0 !important; }
  body.print-brief .quote-layout { display: block !important; width: 100% !important; }
  body.print-brief .quote-aside, body.print-brief .quote-wizard > *:not(.quote-result) { display: none !important; }
  body.print-brief .quote-result { display: block !important; border: 0 !important; padding: 0 !important; }
  body.print-brief .quote-result pre { background: #fff !important; border: 1px solid #bbb !important; color: #111 !important; white-space: pre-wrap !important; font-size: 10pt !important; }
  body.print-brief .result-actions, body.print-brief [data-copy-status], body.print-brief .direct-contact, body.print-brief .result-icon { display: none !important; }
}

/* V11 / Legal + production finishing */
@layer components {
  .legal-hero .page-hero-side { align-self: end; }
  .legal-section { background: var(--paper); }
  .legal-grid {
    display: grid;
    grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 8vw, 120px);
    align-items: start;
  }
  .legal-grid > aside { position: sticky; top: 118px; }
  .legal-grid > aside h2 { margin-top: 16px; font-size: clamp(2.3rem, 4.2vw, 5rem); line-height: .96; }
  .legal-copy { border-top: 1px solid var(--line); }
  .legal-copy > section {
    display: grid;
    grid-template-columns: 52px minmax(170px, .55fr) minmax(0, 1fr);
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
  }
  .legal-copy > section > span { color: var(--brass-dark); font-size: .72rem; letter-spacing: .12em; }
  .legal-copy h3 { font-size: 1.1rem; font-weight: 650; }
  .legal-copy p { max-width: 62ch; color: var(--muted); line-height: 1.75; }
  .legal-contact { margin-top: 18px; }
  .legal-contact:not([hidden]) { display: flex; flex-wrap: wrap; gap: 10px; }

  
  
}

@media (max-width: 820px) {
  .legal-grid { grid-template-columns: 1fr; gap: 42px; }
  .legal-grid > aside { position: static; }
  .legal-copy > section { grid-template-columns: 38px 1fr; gap: 16px; }
  .legal-copy > section p, .legal-copy > section .contact-links { grid-column: 2; }
}

@media (max-width: 560px) {
  .legal-copy > section { grid-template-columns: 1fr; }
  .legal-copy > section p, .legal-copy > section .contact-links { grid-column: auto; }
}

@layer components {
  .privacy-note { margin: 16px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.6; }
  .privacy-note a { color: var(--ink); text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--brass) 75%, transparent); text-underline-offset: 4px; }
}

/* V11.1 verified contact channels */
@layer components {
  .footer-contact-links { margin-top: 14px; gap: 6px; }
  .footer-contact-links a { border-color: var(--line-dark); color: rgba(244,242,236,.64); padding: 6px 9px; font-size: .58rem; }
  .footer-contact-links a:hover { color: var(--paper); border-color: rgba(244,242,236,.42); }
}
@media (max-width: 760px) {
  .footer-contact-links { margin-top: 12px; }
}

/* V12 — conversion, trust and contact architecture */
@layer components {
  .conversion-trust { border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--paper) 88%, var(--paper-2)); }
  .conversion-trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .conversion-trust article { min-width: 0; display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 14px; padding: 24px 20px 26px; border-right: 1px solid var(--line); }
  .conversion-trust article:first-child { border-left: 1px solid var(--line); }
  .conversion-trust article > span, .entry-card > span, .fit-grid article > span, .portfolio-proof-grid article > span, .case-proof-grid article > span { color: var(--brass-text); font-size: .66rem; font-weight: 700; letter-spacing: .12em; }
  .conversion-trust small, .entry-card small, .portfolio-proof-grid small { display: block; color: var(--muted); font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .conversion-trust b { display: block; margin-top: 7px; font-size: .82rem; line-height: 1.45; font-weight: 550; }

  .entry-section { background: var(--paper-2); }
  .entry-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); }
  .entry-card { position: relative; min-width: 0; min-height: 320px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--line); background: rgba(244,242,236,.55); transition: background .3s var(--ease), transform .3s var(--ease); }
  .entry-card:last-child { border-right: 0; }
  .entry-card:hover { background: var(--paper); transform: translateY(-3px); }
  .entry-card small { margin-top: 28px; }
  .entry-card h3 { max-width: 9ch; margin-top: 12px; font-size: clamp(1.7rem, 2.2vw, 2.35rem); line-height: .98; }
  .entry-card p { margin-top: 18px; color: var(--muted); font-size: .9rem; line-height: 1.62; }
  .entry-card > b { margin-top: auto; padding-top: 26px; font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
  .entry-card-dark { background: var(--ink); color: var(--paper); }
  .entry-card-dark:hover { background: var(--ink-soft); }
  .entry-card-dark small, .entry-card-dark p { color: rgba(244,242,236,.58); }
  .entry-card-dark > span { color: var(--brass-light); }

  .motion-social-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 28px; color: var(--brass-light); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .motion-social-link span { transition: transform .25s var(--ease); }
  .motion-social-link:hover span { transform: translate(3px,-3px); }

  .service-fit-section { background: var(--paper-2); }
  .fit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
  .fit-grid article { min-width: 0; padding: clamp(26px, 3.5vw, 46px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .fit-grid h3 { max-width: 22ch; margin-top: 24px; font-size: clamp(1.55rem, 2.4vw, 2.5rem); line-height: 1.02; }
  .fit-grid p { margin-top: 18px; color: var(--muted); line-height: 1.65; }
  .fit-action { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
  .fit-action p { color: var(--muted); }

  .portfolio-proof-section { background: var(--ink); color: var(--paper); }
  .portfolio-proof-section .heading-copy { color: rgba(244,242,236,.62); }
  .portfolio-proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line-dark); }
  .portfolio-proof-grid article { min-width: 0; padding: clamp(28px, 4vw, 48px); border-right: 1px solid var(--line-dark); }
  .portfolio-proof-grid article:last-child { border-right: 0; }
  .portfolio-proof-grid article > span { color: var(--brass-light); }
  .portfolio-proof-grid small { margin-top: 30px; color: rgba(244,242,236,.44); }
  .portfolio-proof-grid h3 { margin-top: 12px; font-size: clamp(1.8rem, 2.8vw, 3rem); }
  .portfolio-proof-grid p { margin-top: 18px; color: rgba(244,242,236,.6); line-height: 1.65; }

  
  .case-proof-section { background: var(--paper-2); }
  .case-proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
  .case-proof-grid article { min-width: 0; padding: 30px 30px 34px 0; border-right: 1px solid var(--line); }
  .case-proof-grid article:not(:first-child) { padding-left: 30px; }
  .case-proof-grid article:last-child { border-right: 0; }
  .case-proof-grid h3 { max-width: 17ch; margin-top: 24px; font-size: clamp(1.55rem, 2.15vw, 2.35rem); line-height: 1.02; }
  .case-proof-grid p { margin-top: 18px; color: var(--muted); font-size: .92rem; line-height: 1.68; }

  .contact-fast-lane { padding-block: clamp(64px, 7vw, 104px); border-bottom: 1px solid var(--line); background: var(--paper-2); }
  .contact-fast-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .58fr); gap: clamp(40px, 7vw, 108px); align-items: end; padding-bottom: clamp(34px, 4vw, 54px); border-bottom: 1px solid var(--line); }
  .contact-fast-heading { display: grid; gap: 18px; }
  .contact-fast-head h2 { max-width: 780px; font-size: clamp(2.7rem, 5vw, 5.25rem); line-height: .94; }
  .contact-fast-intro { max-width: 40ch; color: var(--muted); font-size: clamp(.98rem, 1.25vw, 1.08rem); line-height: 1.65; }

  .contact-directory { border-bottom: 1px solid var(--line); }
  .contact-directory-row {
    position: relative; min-width: 0; display: grid;
    grid-template-columns: 42px minmax(128px, .42fr) minmax(245px, .9fr) minmax(260px, 1fr) auto;
    gap: clamp(18px, 2.6vw, 38px); align-items: center; min-height: 118px; padding: 22px 0;
    border-bottom: 1px solid var(--line); transition: background .25s var(--ease), padding .25s var(--ease);
  }
  .contact-directory-row:last-child { border-bottom: 0; }
  .contact-directory-row::before {
    content: ""; position: absolute; inset: 0 calc(var(--gutter) * -0.35); z-index: 0;
    background: rgba(244,242,236,0); transition: background .25s var(--ease); pointer-events: none;
  }
  .contact-directory-row > * { position: relative; z-index: 1; }
  .contact-directory-row:hover::before { background: rgba(244,242,236,.72); }
  .contact-directory-index { align-self: start; padding-top: 4px; color: var(--brass-text); font-size: .63rem; font-weight: 700; letter-spacing: .12em; }
  .contact-directory-kind { display: grid; gap: 5px; }
  .contact-directory-kind b { font-size: .69rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
  .contact-directory-kind small { color: var(--muted); font-size: .7rem; line-height: 1.35; }
  .contact-directory-value { min-width: 0; font-size: clamp(1.15rem, 1.7vw, 1.55rem); font-weight: 500; letter-spacing: -.028em; white-space: nowrap; }
  .contact-directory-copy { max-width: 36ch; color: var(--muted); font-size: .86rem; line-height: 1.55; }
  .contact-directory-action { justify-self: end; display: inline-flex; align-items: center; gap: 10px; padding-bottom: 4px; border-bottom: 1px solid rgba(180,151,98,.65); font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
  .contact-directory-action i { font-style: normal; transition: transform .28s var(--ease); }
  .contact-directory-row:hover .contact-directory-action i { transform: translate(3px,-2px); }
  .contact-fast-foot { display: flex; justify-content: space-between; gap: 32px; align-items: baseline; padding-top: 20px; color: var(--muted); font-size: .8rem; }
  .contact-fast-foot p { max-width: 66ch; }
  .contact-fast-foot strong { color: var(--ink); font-weight: 600; }
  .contact-fast-foot > span { flex: 0 0 auto; color: #8b887f; font-size: .57rem; font-weight: 700; letter-spacing: .12em; }

  .result-send-label { margin-top: 28px; color: var(--muted); font-size: .64rem; font-weight: 700; letter-spacing: .13em; }
  .direct-contact-primary { margin-top: 12px; padding-top: 0; border-top: 0; }
  .direct-contact-primary .button { min-width: 180px; }
  .result-actions-secondary { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
  .result-actions-secondary .button { min-height: 42px; padding: 10px 14px; font-size: .64rem; }

  .closing-whatsapp { display: inline-flex; align-items: center; gap: 10px; color: rgba(244,242,236,.68); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid rgba(244,242,236,.24); padding-bottom: 5px; }
  .closing-whatsapp:hover { color: var(--paper); border-color: var(--brass-light); }
  .mobile-conversion-bar { display: none; }
}

@media (max-width: 980px) {
  .conversion-trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .conversion-trust article:nth-child(2) { border-right: 0; }
  .conversion-trust article:nth-child(n/**/+3) { border-top: 1px solid var(--line); }
  .entry-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .entry-card:nth-child(2) { border-right: 0; }
  .entry-card:nth-child(n/**/+3) { border-top: 1px solid var(--line); }
  .portfolio-proof-grid { grid-template-columns: 1fr; }
  .portfolio-proof-grid article { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .portfolio-proof-grid article:last-child { border-bottom: 0; }
}

@media (max-width: 820px) {
  body:not(.page-privacy):not(.print-brief) { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .contact-fast-head { grid-template-columns: 1fr; gap: 22px; }
  .contact-fast-intro { max-width: 52ch; }
  .contact-directory-row {
    grid-template-columns: 36px minmax(120px,.45fr) minmax(0,1fr) auto;
    gap: 14px 22px; min-height: 138px; padding: 22px 0;
  }
  .contact-directory-value { grid-column: 3 / 5; grid-row: 1; align-self: start; padding-top: 1px; white-space: normal; overflow-wrap: anywhere; }
  .contact-directory-copy { grid-column: 3 / 4; grid-row: 2; }
  .contact-directory-action { grid-column: 4; grid-row: 2; align-self: end; }
  .contact-fast-foot { align-items: flex-start; flex-direction: column; gap: 10px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-action { align-items: flex-start; flex-direction: column; }
  .case-proof-grid { grid-template-columns: 1fr; }
  .case-proof-grid article, .case-proof-grid article:not(:first-child) { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .case-proof-grid article:last-child { border-bottom: 0; }
  .mobile-conversion-bar { position: fixed; z-index: 180; left: 12px; right: 12px; bottom: max(10px, env(safe-area-inset-bottom)); display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 4px; background: rgba(10,11,9,.94); border: 1px solid rgba(255,255,255,.13); box-shadow: 0 18px 50px rgba(0,0,0,.24); backdrop-filter: blur(18px); }
  .mobile-conversion-bar a { min-width: 0; min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 12px; color: var(--paper); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-conversion-bar a:first-child { background: var(--paper); color: var(--ink); }
  .mobile-conversion-bar a:last-child { color: var(--brass-light); }
  .menu-open .mobile-conversion-bar { opacity: 0; pointer-events: none; }
}

@media (max-width: 620px) {
  .conversion-trust-grid, .entry-grid { grid-template-columns: 1fr; }
  .conversion-trust article { border-left: 1px solid var(--line); border-right: 1px solid var(--line) !important; border-top: 1px solid var(--line); }
  .conversion-trust article:first-child { border-top: 0; }
  .entry-card { min-height: 270px; border-right: 0; border-top: 1px solid var(--line); }
  .entry-card:first-child { border-top: 0; }
  .contact-directory-row {
    grid-template-columns: 30px minmax(0,1fr) auto;
    gap: 9px 14px; min-height: 0; padding: 22px 0 24px;
  }
  .contact-directory-index { grid-column: 1; grid-row: 1; }
  .contact-directory-kind { grid-column: 2; grid-row: 1; }
  .contact-directory-value { grid-column: 2 / 4; grid-row: 2; padding-top: 3px; font-size: clamp(1.05rem, 5vw, 1.32rem); }
  .contact-directory-copy { grid-column: 2 / 4; grid-row: 3; max-width: 38ch; font-size: .82rem; }
  .contact-directory-action { grid-column: 2 / 4; grid-row: 4; justify-self: start; margin-top: 5px; }
  .contact-fast-foot > span { display: none; }
  .fit-grid h3, .case-proof-grid h3 { max-width: none; }
}

@media print { .mobile-conversion-bar { display: none !important; } }


/* V13 — proceso claro, visual y comprensible */
@layer pages {
  .process-story {
    position: relative;
    min-width: 0;
    border: 1px solid rgba(244,242,236,.22);
    background: #0d0e0c;
    box-shadow: 0 26px 72px rgba(0,0,0,.22);
    overflow: hidden;
  }
  .process-story-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 58px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--line-dark);
  }
  .process-story-head > div { display: grid; gap: 3px; }
  .process-story-head span,
  .process-story-head b,
  .process-story-note span {
    color: var(--brass-light);
    font-size: .58rem;
    letter-spacing: .13em;
    text-transform: uppercase;
  }
  .process-story-head strong { color: rgba(244,242,236,.78); font-size: .78rem; font-weight: 500; }
  .process-story-head b { white-space: nowrap; }

  .process-story-viewport {
    position: relative;
    min-height: 500px;
    overflow: hidden;
  }
  .process-scene {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: minmax(0,1fr) auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .5s var(--ease), transform .6s var(--ease), visibility .5s;
  }
  .process-scene.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .process-media {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: #080907;
    border-bottom: 1px solid var(--line-dark);
  }
  .process-media > picture,
  .process-media > picture > img {
    width: 100%;
    height: 100%;
  }
  .process-media > picture > img {
    object-fit: contain;
    object-position: center;
    background: #080907;
  }
  
  
  
  

  .process-scene-copy {
    min-height: 142px;
    display: grid;
    grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr);
    grid-template-rows: auto 1fr;
    gap: 8px 22px;
    align-content: center;
    padding: 18px;
    background: #11120f;
  }
  .process-scene-copy small {
    grid-column: 1;
    color: var(--brass-light);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .12em;
  }
  .process-scene-copy h3 {
    grid-column: 1;
    align-self: start;
    color: var(--paper);
    font-size: clamp(1.35rem,2.2vw,2rem);
    line-height: 1.02;
  }
  .process-scene-copy p {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    color: rgba(244,242,236,.58);
    font-size: .78rem;
    line-height: 1.55;
  }

  
  
  
  
  
  
  

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

  .process-story-tabs {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    border-top: 1px solid var(--line-dark);
  }
  .process-story-tabs button {
    min-width: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 8px;
    padding: 12px 10px;
    background: #0d0e0c;
    color: rgba(244,242,236,.48);
    border-right: 1px solid var(--line-dark);
    text-align: left;
    transition: background .3s,color .3s;
  }
  .process-story-tabs button:last-child { border-right: 0; }
  .process-story-tabs button.active { background: var(--brass); color: var(--ink); }
  .process-story-tabs span { grid-row: 1 / span 2; color: var(--brass-light); font-size: .54rem; }
  .process-story-tabs button.active span { color: var(--ink); }
  .process-story-tabs b { min-width: 0; font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; }
  .process-story-tabs small { min-width: 0; font-size: .52rem; opacity: .72; text-transform: uppercase; }
  .process-story-progress { height: 2px; background: rgba(244,242,236,.1); overflow: hidden; }
  .process-story-progress i { display: block; width: 0; height: 100%; background: var(--brass-light); }
  .process-story.is-autoplaying .process-story-progress i { animation: process-story-progress var(--process-duration) linear forwards; }
  @keyframes process-story-progress { from { width: 0; } to { width: 100%; } }
  .process-story-note {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 14px;
    border-top: 1px solid var(--line-dark);
    color: rgba(244,242,236,.45);
  }
  .process-story-note p { font-size: .56rem; text-align: right; }

  .about-process-proof {
    border: 1px solid var(--line-dark);
    background: #0d0e0c;
    box-shadow: 0 26px 70px rgba(0,0,0,.18);
  }
  .about-process-proof-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line-dark);
    color: rgba(244,242,236,.55);
    font-size: .58rem;
    letter-spacing: .11em;
    text-transform: uppercase;
  }
  .about-process-proof-head b { color: var(--brass-light); font-weight: 600; }
  .about-process-proof-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .about-proof-card {
    min-width: 0;
    padding: 10px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }
  .about-proof-card:nth-child(2n) { border-right: 0; }
  .about-proof-card:nth-last-child(-n/**/+2) { border-bottom: 0; }
  .about-proof-media,
  .about-proof-parts {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #080907;
  }
  .about-proof-media img { width: 100%; height: 100%; object-fit: contain; background: #080907; }
  .about-proof-media > span,
  .about-proof-parts > span {
    position: absolute;
    left: 7px;
    top: 7px;
    z-index: 3;
    padding: 5px 6px;
    background: rgba(13,14,12,.84);
    border: 1px solid rgba(244,242,236,.18);
    color: var(--paper);
    font-size: .48rem;
    letter-spacing: .09em;
  }
  .about-proof-media--technical img { opacity: .62; }
  .about-proof-media--technical > div { position: absolute; inset: 0; }
  .about-proof-media--technical i {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%,-50%);
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brass);
    color: var(--ink);
    font-size: .48rem;
    font-style: normal;
    font-weight: 700;
  }
  .about-proof-parts { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; padding: 2px; }
  .about-part { min-width: 0; overflow: hidden; }
  .about-part img { width: 100%; height: 100%; object-fit: cover; }
  .about-part--floor img { object-position: 50% 82%; transform: scale(1.16); }
  .about-part--wall img { object-position: 64% 43%; transform: scale(1.3); }
  .about-part--counter img { object-position: 49% 66%; transform: scale(1.4); }
  .about-part--totem img { object-position: 83% 60%; transform: scale(1.4); }
  .about-proof-card > div:last-child { display: grid; grid-template-columns: auto 1fr; gap: 2px 9px; padding: 11px 4px 4px; }
  .about-proof-card > div:last-child > span { grid-row: 1 / span 3; color: var(--brass-light); font-size: .55rem; }
  .about-proof-card small { color: rgba(244,242,236,.48); font-size: .5rem; letter-spacing: .1em; }
  .about-proof-card h3 { color: var(--paper); font-size: 1rem; letter-spacing: -.025em; }
  .about-proof-card p { color: rgba(244,242,236,.5); font-size: .68rem; line-height: 1.4; }
}

@layer utilities {
  @media (max-width: 1100px) {
    .process-story { width: min(720px,100%); }
    .about-process-proof { width: min(760px,100%); }
  }
  @media (max-width: 820px) {
    .process-story-viewport { min-height: 540px; }
    .process-scene-copy { grid-template-columns: 1fr; min-height: 156px; }
    .process-scene-copy p { grid-column: 1; grid-row: auto; }
    .about-process-proof { margin-top: 8px; }
  }
  @media (max-width: 600px) {
    .process-story-head { align-items: flex-start; }
    .process-story-head strong { font-size: .7rem; }
    .process-story-viewport { min-height: 530px; }
    
    
    
    
    .process-scene-copy { padding: 15px; min-height: 166px; }
    .process-scene-copy h3 { font-size: 1.35rem; }
    .process-story-tabs button { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 2px; padding: 10px 7px; }
    .process-story-tabs span { grid-row: auto; }
    .process-story-tabs small { display: none; }
    .process-story-note { display: grid; }
    .process-story-note p { text-align: left; }
    
    
    .about-process-proof-grid { grid-template-columns: 1fr; }
    .about-proof-card { border-right: 0; border-bottom: 1px solid var(--line-dark) !important; }
    .about-proof-card:last-child { border-bottom: 0 !important; }
    .about-proof-media, .about-proof-parts { aspect-ratio: 16 / 10; }
  }
  @media (prefers-reduced-motion: reduce) {
    .process-story.is-autoplaying .process-story-progress i { animation: none; width: 100%; }
  }
}

/* V14 · Historia, equipo y autoridad humana */
@layer pages {
  .about-hero--heritage .about-copy h1 {
    max-width: 820px;
    font-size: clamp(3.45rem, 6.1vw, 6.25rem);
  }
  .about-hero--heritage .about-copy > p:not(.eyebrow) {
    max-width: 58ch;
  }

  .history-section { background: var(--paper); }
  .history-intro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 78px);
    padding-bottom: clamp(48px, 6vw, 84px);
    border-bottom: 1px solid var(--line);
  }
  .history-intro p {
    color: var(--muted);
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  }
  .history-intro p:first-child {
    color: var(--ink);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.35;
    letter-spacing: -.02em;
  }
  .history-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
  }
  .history-timeline li {
    position: relative;
    min-height: 390px;
    padding: 34px 28px 38px;
    border-right: 1px solid var(--line);
  }
  .history-timeline li:last-child { border-right: 0; }
  .history-timeline li::before {
    content: "";
    position: absolute;
    left: -4px;
    top: -5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brass);
  }
  .history-timeline li:first-child::before { left: 0; }
  .history-timeline li > span {
    display: block;
    color: var(--brass);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.2vw, 3.5rem);
    line-height: 1;
  }
  .history-timeline small {
    display: block;
    margin-top: 26px;
    color: var(--muted);
    font-size: .62rem;
    letter-spacing: .13em;
  }
  .history-timeline h3 {
    margin-top: 12px;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.05;
  }
  .history-timeline p {
    margin-top: 18px;
    color: var(--muted);
    font-size: .92rem;
  }
  .history-quote {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(28px, 5vw, 80px);
    align-items: start;
    padding: clamp(40px, 6vw, 72px) 0 0;
  }
  .history-quote span {
    color: var(--brass-text);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
  }
  .history-quote p {
    max-width: 900px;
    font-family: var(--serif);
    font-size: clamp(2rem, 3.8vw, 4rem);
    line-height: 1.08;
    letter-spacing: -.035em;
  }

  .legacy-section { border-top: 0; }
  .legacy-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: clamp(42px, 8vw, 120px);
    align-items: start;
  }
  .legacy-copy h2 {
    max-width: 780px;
    font-size: clamp(2.75rem, 5vw, 5.2rem);
    line-height: .98;
  }
  .legacy-copy p:not(.section-label) {
    margin-top: 24px;
    color: rgba(244,242,236,.66);
    font-size: 1.05rem;
  }
  .legacy-recognition {
    min-height: 460px;
    padding: clamp(28px, 4vw, 50px);
    border: 1px solid var(--line-dark);
    background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
    display: flex;
    flex-direction: column;
  }
  .legacy-recognition > span {
    color: var(--brass-light);
    font-size: .63rem;
    letter-spacing: .14em;
  }
  .legacy-recognition h3 {
    margin-top: auto;
    font-size: clamp(2rem, 3.1vw, 3.4rem);
    line-height: 1.02;
  }
  .legacy-recognition p {
    margin-top: 24px;
    color: rgba(244,242,236,.62);
  }
  .legacy-recognition b {
    margin-top: 34px;
    color: rgba(244,242,236,.38);
    font-size: .6rem;
    letter-spacing: .14em;
  }

  .team-section { background: var(--paper-2); }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .team-card {
    min-width: 0;
    min-height: 520px;
    padding: 28px 24px 34px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
  }
  .team-card:last-child { border-right: 0; }
  .team-monogram {
    display: grid;
    place-items: center;
    width: 112px;
    aspect-ratio: 1;
    margin-bottom: 34px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--brass);
    font-family: var(--serif);
    font-size: 2.1rem;
    letter-spacing: -.03em;
  }
  .team-card > span {
    color: var(--brass-text);
    font-size: .6rem;
    letter-spacing: .13em;
  }
  .team-card h3 {
    margin-top: 18px;
    font-size: clamp(1.6rem, 2.2vw, 2.35rem);
    line-height: 1.02;
  }
  .team-card h4 {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
  }
  .team-card p {
    margin-top: auto;
    padding-top: 28px;
    color: var(--muted);
    font-size: .9rem;
  }
  .team-note {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(28px, 5vw, 80px);
    padding-top: 34px;
  }
  .team-note span {
    color: var(--brass-text);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .13em;
  }
  .team-note p {
    color: var(--muted);
    font-size: 1rem;
  }

  .workshop-section--capability { background: var(--paper); }
  .capability-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: clamp(38px, 5vw, 64px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .capability-strip article {
    min-height: 160px;
    padding: 22px 20px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
  }
  .capability-strip article:last-child { border-right: 0; }
  .capability-strip span { color: var(--brass-text); font-size: .6rem; }
  .capability-strip b { margin-top: auto; font-size: 1.2rem; font-weight: 500; }
  .capability-strip small { margin-top: 6px; color: var(--muted); font-size: .56rem; letter-spacing: .12em; }
  .workshop-standard {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(38px, 5vw, 60px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .workshop-standard > div {
    min-height: 160px;
    padding: 24px 20px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .workshop-standard > div:last-child { border-right: 0; }
  .workshop-standard span { color: var(--brass-text); font-size: .6rem; letter-spacing: .13em; }
  .workshop-standard b { margin-top: auto; font-size: .94rem; font-weight: 500; }

  
  

  .coverage-section { overflow: hidden; }
  .coverage-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
  }
  .coverage-copy h2 {
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    line-height: .97;
  }
  .coverage-copy > p:not(.section-label) {
    margin-top: 26px;
    color: rgba(244,242,236,.64);
    font-size: 1.05rem;
  }
  .coverage-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
  }
  .coverage-badges span {
    padding: 8px 10px;
    border: 1px solid var(--line-dark);
    color: rgba(244,242,236,.55);
    font-size: .58rem;
    letter-spacing: .1em;
  }
  .route-map {
    position: relative;
    min-height: 620px;
    border: 1px solid var(--line-dark);
    background:
      linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
      #0d0e0c;
    background-size: 34px 34px;
  }
  .route-line {
    position: absolute;
    left: 50%;
    top: 84px;
    bottom: 84px;
    width: 1px;
    background: rgba(244,242,236,.22);
  }
  .route-line i {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--brass-light), var(--brass), var(--brass-light));
    transform-origin: top;
    animation: route-pulse 4s ease-in-out infinite alternate;
  }
  @keyframes route-pulse { from { transform: scaleY(.18); opacity: .35; } to { transform: scaleY(1); opacity: 1; } }
  .route-point {
    position: absolute;
    left: 50%;
    width: min(40%, 240px);
    padding-left: 34px;
  }
  .route-point::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 6px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--brass);
    box-shadow: 0 0 0 7px rgba(180,151,98,.13);
  }
  .route-point--north { top: 74px; transform: translateX(18px); }
  .route-point--center { top: 50%; transform: translate(18px, -50%); }
  .route-point--south { bottom: 72px; transform: translateX(18px); }
  .route-point span { color: var(--brass-light); font-size: .58rem; letter-spacing: .13em; }
  .route-point h3 { margin-top: 5px; color: var(--paper); font-size: 2rem; }
  .route-point p { margin-top: 8px; color: rgba(244,242,236,.48); font-size: .78rem; }

  .delivery-promise {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(28px, 5vw, 78px);
    align-items: start;
    margin-top: clamp(44px, 6vw, 78px);
    padding-top: clamp(36px, 5vw, 58px);
    border-top: 1px solid var(--line);
  }
  .delivery-promise span {
    color: var(--brass-text);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .13em;
  }
  .delivery-promise p {
    max-width: 900px;
    font-size: clamp(2rem, 3.8vw, 4.1rem);
    line-height: 1.08;
    letter-spacing: -.04em;
  }
  .delivery-promise em { color: var(--brass); font-family: var(--serif); font-weight: 400; }

  
}

@layer utilities {
  @media (max-width: 1100px) {
    .history-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .history-timeline li:nth-child(2) { border-right: 0; }
    .history-timeline li:nth-child(-n/**/+2) { border-bottom: 1px solid var(--line); }
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .team-card:nth-child(2) { border-right: 0; }
    .team-card:nth-child(-n/**/+2) { border-bottom: 1px solid var(--line); }
    .coverage-grid { grid-template-columns: 1fr; }
    .route-map { min-height: 540px; }
  }

  @media (max-width: 820px) {
    .history-intro,
    .legacy-grid,
    .history-quote,
    .team-note,
    .delivery-promise { grid-template-columns: 1fr; }
    .history-timeline li { min-height: 340px; }
    .capability-strip,
    .workshop-standard { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .capability-strip article:nth-child(2),
    .workshop-standard > div:nth-child(2) { border-right: 0; }
    .capability-strip article:nth-child(-n/**/+2),
    .workshop-standard > div:nth-child(-n/**/+2) { border-bottom: 1px solid var(--line); }
    
    
    .legacy-recognition { min-height: 390px; }
  }

  @media (max-width: 600px) {
    .about-hero--heritage .about-copy h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
    .history-timeline,
    .team-grid,
    .capability-strip,
    .workshop-standard { grid-template-columns: 1fr; }
    .history-timeline li,
    .team-card,
    .capability-strip article,
    .workshop-standard > div {
      min-height: auto;
      border-right: 0 !important;
      border-bottom: 1px solid var(--line) !important;
    }
    .history-timeline li:last-child,
    .team-card:last-child,
    .capability-strip article:last-child,
    .workshop-standard > div:last-child { border-bottom: 0 !important; }
    .history-timeline li { padding: 28px 0 32px; }
    .history-timeline li::before { display: none; }
    .team-card { padding: 28px 0 34px; min-height: 420px; }
    .team-monogram { width: 92px; }
    .capability-strip article,
    .workshop-standard > div { padding: 22px 0; }
    .route-map { min-height: 500px; }
    .route-point { width: 42%; padding-left: 24px; }
    .route-point h3 { font-size: 1.55rem; }
    .route-point p { font-size: .7rem; }
    .history-quote p,
    .delivery-promise p { font-size: clamp(1.8rem, 9.5vw, 3rem); }
  }

  @media (prefers-reduced-motion: reduce) {
    .route-line i { animation: none; transform: none; }
  }
}


/* V15 — Hero propio de Justo a Tiempo: stand conceptual coherente y sin marca cliente */
@layer pages {
  .process-story--jt {
    border-color: rgba(212,183,124,.34);
    background: #0b0c0a;
    box-shadow: 0 30px 86px rgba(0,0,0,.28);
  }
  .process-story--jt .process-story-head {
    background: linear-gradient(180deg,rgba(255,255,255,.018),transparent);
  }
  .process-media--jt {
    display: block;
    background: #080907;
  }
  .jt-stage-canvas {
    position: relative;
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0,1fr) auto;
    padding: 12px 14px 11px;
    overflow: hidden;
    background-color: #090a08;
    background-image:
      linear-gradient(rgba(244,242,236,.038) 1px,transparent 1px),
      linear-gradient(90deg,rgba(244,242,236,.038) 1px,transparent 1px);
    background-size: 28px 28px;
  }
  .jt-stage-canvas::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 74% 24%,rgba(180,151,98,.08),transparent 34%),
      linear-gradient(180deg,transparent 66%,rgba(0,0,0,.22));
  }
  .jt-stage-toolbar,
  .jt-stage-legend,
  .jt-fabrication-flow { position: relative; z-index: 2; }
  .jt-stage-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 1px 1px 8px;
    color: rgba(244,242,236,.48);
    font-size: .52rem;
    letter-spacing: .115em;
    text-transform: uppercase;
  }
  .jt-stage-toolbar b { color: var(--brass-light); font-weight: 600; }
  .jt-stand-svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 260px;
    overflow: visible;
  }
  .jt-stand-svg * { vector-effect: non-scaling-stroke; }
  .jt-ground-shadow polygon { fill: rgba(0,0,0,.3); }
  .jt-ground-shadow--final polygon { fill: rgba(0,0,0,.42); }

  .jt-floor-top,
  .jt-wall-back,
  .jt-wall-side,
  .jt-counter-top,
  .jt-counter-front,
  .jt-counter-side,
  .jt-totem-front,
  .jt-totem-side,
  .jt-totem-top,
  .jt-screen-frame {
    stroke: rgba(244,242,236,.62);
    stroke-width: 1.35;
    stroke-linejoin: round;
  }
  .jt-floor-top { fill: rgba(244,242,236,.08); }
  .jt-floor-front { fill: rgba(180,151,98,.2); stroke: rgba(212,183,124,.72); stroke-width: 1.25; }
  .jt-floor-side { fill: rgba(180,151,98,.12); stroke: rgba(212,183,124,.58); stroke-width: 1.2; }
  .jt-wall-back { fill: rgba(244,242,236,.07); }
  .jt-wall-side { fill: rgba(244,242,236,.035); }
  .jt-join-line { stroke: rgba(212,183,124,.46); stroke-width: 1; stroke-dasharray: 5 6; }
  .jt-led-line { fill: none; stroke: rgba(212,183,124,.82); stroke-width: 2.2; stroke-linecap: round; }
  .jt-screen-frame { fill: rgba(244,242,236,.055); }
  .jt-screen { fill: #111713; stroke: rgba(212,183,124,.55); stroke-width: 1.2; }
  .jt-screen-graphic { fill: none; stroke: rgba(212,183,124,.72); stroke-width: 1.5; }
  .jt-counter-top { fill: rgba(244,242,236,.12); }
  .jt-counter-front { fill: rgba(244,242,236,.075); }
  .jt-counter-side { fill: rgba(180,151,98,.13); }
  .jt-counter-detail { stroke: rgba(212,183,124,.7); stroke-width: 1.5; }
  .jt-totem-front { fill: rgba(244,242,236,.08); }
  .jt-totem-side { fill: rgba(180,151,98,.13); }
  .jt-totem-top { fill: rgba(244,242,236,.12); }
  .jt-totem-mark { fill: none; stroke: rgba(212,183,124,.82); stroke-width: 2; stroke-linecap: round; }
  .jt-signature rect { fill: rgba(13,14,12,.62); stroke: rgba(212,183,124,.72); stroke-width: 1.2; }
  .jt-signature text { fill: var(--paper); font-size: 23px; font-family: Arial,sans-serif; font-weight: 700; letter-spacing: .04em; }
  .jt-signature .jt-signature-small { fill: rgba(244,242,236,.48); font-size: 7px; font-weight: 500; letter-spacing: .16em; }
  .jt-scale-person circle { fill: rgba(244,242,236,.15); stroke: rgba(244,242,236,.62); stroke-width: 1.15; }
  .jt-scale-person path { fill: none; stroke: rgba(244,242,236,.54); stroke-width: 1.35; stroke-linecap: round; }

  .jt-stage-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 7px;
    border-top: 1px solid rgba(244,242,236,.09);
  }
  .jt-stage-legend span {
    padding: 5px 7px;
    border: 1px solid rgba(244,242,236,.13);
    background: rgba(13,14,12,.72);
    color: rgba(244,242,236,.6);
    font-size: .49rem;
    letter-spacing: .085em;
    text-transform: uppercase;
  }
  .jt-stage-legend b { color: var(--brass-light); margin-right: 4px; }

  .jt-wireframe polygon,
  .jt-wireframe rect {
    fill: rgba(244,242,236,.012);
    stroke: rgba(244,242,236,.48);
    stroke-width: 1.05;
    stroke-linejoin: round;
  }
  .jt-dimensions line,
  .jt-dimensions path { fill: rgba(212,183,124,.82); stroke: rgba(212,183,124,.78); stroke-width: .8; }
  .jt-dimensions text {
    fill: rgba(212,183,124,.9);
    font: 600 9px/1 Arial,sans-serif;
    letter-spacing: .12em;
  }
  .jt-callouts circle { fill: #0d0e0c; stroke: rgba(212,183,124,.9); stroke-width: 1.2; }
  .jt-callouts text { fill: var(--paper); font: 700 9px/1 Arial,sans-serif; }
  .jt-stage-legend--numbered { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 1px; background: rgba(244,242,236,.08); }
  .jt-stage-legend--numbered span { border: 0; background: #0d0e0c; text-align: center; }

  .jt-explode-guides line {
    stroke: rgba(212,183,124,.45);
    stroke-width: 1;
    stroke-dasharray: 5 5;
  }
  .jt-stand-svg--exploded .jt-wall-back,
  .jt-stand-svg--exploded .jt-wall-side,
  .jt-stand-svg--exploded .jt-floor-top,
  .jt-stand-svg--exploded .jt-counter-top,
  .jt-stand-svg--exploded .jt-counter-front,
  .jt-stand-svg--exploded .jt-counter-side,
  .jt-stand-svg--exploded .jt-totem-front,
  .jt-stand-svg--exploded .jt-totem-side,
  .jt-stand-svg--exploded .jt-totem-top { stroke: rgba(212,183,124,.75); }
  .jt-component-label {
    fill: rgba(244,242,236,.74);
    font: 700 9px/1 Arial,sans-serif;
    letter-spacing: .08em;
  }
  .jt-fabrication-flow {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    margin-top: 7px;
    background: rgba(244,242,236,.1);
  }
  .jt-fabrication-flow li {
    position: relative;
    padding: 6px 4px;
    background: #0d0e0c;
    color: rgba(244,242,236,.58);
    font-size: .48rem;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
  }
  .jt-fabrication-flow li:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -5px;
    z-index: 2;
    color: var(--brass-light);
  }

  .jt-final-surface { fill: rgba(244,242,236,.105); }
  .jt-final-side { fill: rgba(180,151,98,.07); }
  .jt-led-line--final { stroke: #ead69a; stroke-width: 2.8; filter: drop-shadow(0 0 4px rgba(234,214,154,.62)); }
  .jt-final-lighting circle { fill: #ead69a; filter: drop-shadow(0 0 4px rgba(234,214,154,.7)); }
  .jt-final-lighting path { fill: rgba(234,214,154,.055); stroke: rgba(234,214,154,.18); stroke-width: .7; }
  .jt-screen--final { fill: rgba(180,151,98,.13); }
  .jt-screen-text { fill: rgba(244,242,236,.72); font: 600 11px/1 Arial,sans-serif; letter-spacing: .08em; }
  .jt-counter-front--final { fill: rgba(180,151,98,.14); }
  .jt-counter-jt { fill: var(--paper); font: 700 18px/1 Arial,sans-serif; letter-spacing: .04em; }
  .jt-totem-front--final { fill: rgba(244,242,236,.11); }
  .jt-totem-mark--final { stroke: #ead69a; filter: drop-shadow(0 0 4px rgba(234,214,154,.48)); }
  .jt-signature--final rect { fill: rgba(180,151,98,.13); }
  .jt-stage-legend--status span { color: rgba(244,242,236,.76); }
  .process-story--jt .process-story-note span { white-space: nowrap; }
  .process-story--jt .process-story-note p { max-width: 330px; }
}

@media (max-width: 1100px) {
  @layer pages {
    .process-story--jt { width: min(760px,100%); }
    .jt-stand-svg { min-height: 280px; }
  }
}

@media (max-width: 620px) {
  @layer pages {
    .jt-stage-canvas { padding: 9px 9px 8px; background-size: 22px 22px; }
    .jt-stage-toolbar { font-size: .46rem; padding-bottom: 5px; }
    .jt-stage-toolbar b { display: none; }
    .jt-stand-svg { min-height: 225px; }
    .jt-stage-legend { gap: 4px; padding-top: 5px; }
    .jt-stage-legend span { padding: 4px 5px; font-size: .43rem; }
    .jt-stage-legend--numbered { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .jt-stage-legend--numbered span:nth-child(n/**/+4) { display: none; }
    .jt-fabrication-flow li { font-size: .43rem; padding-inline: 2px; }
    .process-story--jt .process-story-note span { white-space: normal; }
  }
}

@media (max-width: 620px) {
  @layer pages {
    .jt-stage-legend--numbered { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .jt-stage-legend--numbered span:nth-child(n/**/+4) { display: block; }
    .jt-stage-legend--numbered span:last-child { grid-column: 1 / -1; }
  }
}

/* V18 · authority, factual case context and real lead flow */
.facts-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.facts-grid > div { min-width: 0; }
.facts-grid b { overflow-wrap: anywhere; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.consent-field { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; margin: 18px 0 4px; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.consent-field input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brass); }
.consent-field a { color: var(--ink); border-bottom: 1px solid var(--line-dark); }
.form-submit-status { min-height: 1.3em; margin: 14px 0 0; font-size: .78rem; color: var(--muted); }
.form-submit-status[data-state="sending"] { color: var(--ink); }
.form-submit-status[data-state="success"] { color: #4f6547; }
.form-submit-status[data-state="error"] { color: #8f3d37; }
.form-submit-status[data-state="info"] { color: var(--muted); }
[data-submit-project][disabled] { opacity: .55; cursor: wait; pointer-events: none; }
.team-monogram.has-photo { overflow: hidden; padding: 0; }
.team-photo { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.client-voices { scroll-margin-top: 96px; background: var(--paper-2); }
.client-voices--services { background: var(--paper); }
.client-voices--about { background: var(--paper-2); }
.client-voices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.client-voice {
  min-width: 0;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 52px);
  border-right: 1px solid var(--line);
}
.client-voice:first-child { padding-left: 0; }
.client-voice:last-child { padding-right: 0; border-right: 0; }
.client-voice blockquote p {
  max-width: 32ch;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.25vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -.025em;
}
.client-voice figcaption {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 34px;
}
.client-voice figcaption::before {
  content: "";
  width: 34px;
  height: 1px;
  margin-bottom: 12px;
  background: var(--brass);
}
.client-voice figcaption strong { font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.client-voice figcaption span { color: var(--muted); font-size: .72rem; line-height: 1.45; }







@media (max-width: 980px) {
  .facts-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .facts-grid > div:nth-child(2n) { border-right: 0; }
  .facts-grid > div:nth-child(-n/**/+2) { border-bottom: 1px solid var(--line); }
  
  
  
}
@media (max-width: 760px) {
  .client-voices-grid { grid-template-columns: 1fr; }
  .client-voice,
  .client-voice:first-child,
  .client-voice:last-child {
    min-height: 0;
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .client-voice:last-child { border-bottom: 0; }
  .client-voice blockquote p { max-width: 36ch; }
  .client-voice figcaption { margin-top: 28px; padding-top: 0; }
}
@media (max-width: 600px) {
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid > div, .facts-grid > div:nth-child(-n/**/+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .facts-grid > div:last-child { border-bottom: 0; }
  .consent-field { font-size: .76rem; }
}

/* V20.1.2 · Calibración tipográfica y de ritmo
   Mantiene la dirección editorial, pero reduce la escala de exhibición para
   que el contenido, las imágenes y las llamadas a la acción respiren mejor. */
:root {
  --section: clamp(72px, 7.5vw, 112px);
  --section-small: clamp(50px, 5vw, 74px);
  --type-hero-home: clamp(3rem, 4.65vw, 4.9rem);
  --type-hero-page: clamp(3.05rem, 5vw, 5rem);
  --type-hero-about: clamp(3.1rem, 4.75vw, 5.15rem);
  --type-hero-project: clamp(3.1rem, 5.25vw, 5.6rem);
  --type-display-xl: clamp(2.5rem, 3.9vw, 4.5rem);
  --type-display-lg: clamp(2.25rem, 3.5vw, 4rem);
  --type-display-md: clamp(2rem, 2.9vw, 3.35rem);
  --type-display-sm: clamp(1.75rem, 2.35vw, 2.75rem);
  --type-card-title: clamp(1.4rem, 1.85vw, 1.95rem);
}

.home-hero h1 {
  max-width: 900px;
  font-size: var(--type-hero-home);
  line-height: .95;
}
.page-hero h1,
.not-found h1 {
  max-width: 860px;
  font-size: var(--type-hero-page);
  line-height: .96;
}
.about-copy h1,
.about-hero--heritage .about-copy h1 {
  max-width: 780px;
  font-size: var(--type-hero-about);
  line-height: .94;
}
.project-title h1 {
  max-width: 100%;
  font-size: var(--type-hero-project);
  line-height: .96;
  overflow-wrap: break-word;
}

.section-heading h2, .intro-grid h2, .material-grid h2, .compare-head h2 {
  font-size: var(--type-display-lg);
  line-height: 1;
}
.closing-grid h2, .motion-copy h2, .legacy-copy h2, .coverage-copy h2, .contact-fast-head h2 {
  font-size: var(--type-display-xl);
  line-height: .98;
}
.service-summary h2, .quote-aside h2, .quote-result h2, .next-grid h2, .legal-grid > aside h2 {
  font-size: var(--type-display-md);
  line-height: 1;
}
.reading-grid h2, .execution-intro h3, .legacy-recognition h3, .history-quote p, .delivery-promise p {
  font-size: var(--type-display-sm);
  line-height: 1.12;
}

.project-card h3, .partner-grid h3, .collaboration-grid h3, .name-grid h3, .entry-card h3, .fit-grid h3, .portfolio-proof-grid h3, .case-proof-grid h3, .team-card h3 {
  font-size: var(--type-card-title);
  line-height: 1.05;
}
.case-caption h3,
.path-card h3,
.route-point h3 { font-size: clamp(1.55rem, 1.7vw, 1.8rem); }

.hero-lede,
.page-hero-side > p {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}
.client-voice blockquote p {
  font-size: clamp(1.22rem, 1.65vw, 1.85rem);
  line-height: 1.27;
}

.button,
.header-cta,
.text-link,
.text-link-light { font-size: .8rem; }
.contact-directory-action,
.closing-whatsapp,
.mobile-conversion-bar a { font-size: .78rem; }
.result-actions-secondary .button { font-size: .75rem; }
.footer-cta a { font-size: clamp(1.8rem, 2.7vw, 3rem); }
.mobile-nav-inner a { font-size: clamp(1.7rem, 6.4vw, 2.75rem); }

.page-hero {
  padding-block: clamp(72px, 7vw, 104px) clamp(60px, 6vw, 88px);
}
.home-hero-inner,
.about-hero-inner {
  padding-block: clamp(68px, 6.5vw, 96px) 48px;
}
.section-heading { margin-bottom: clamp(38px, 4.5vw, 64px); }
.closing-cta { padding-block: clamp(64px, 6.5vw, 94px); }

@media (max-width: 820px) {
  :root {
    --type-hero-home: clamp(2.75rem, 6.2vw, 3.05rem);
    --type-hero-page: clamp(2.65rem, 6.1vw, 3.1rem);
    --type-hero-about: clamp(2.75rem, 6.15vw, 3.15rem);
    --type-hero-project: clamp(2.7rem, 6.2vw, 3.2rem);
    --type-display-xl: clamp(2.25rem, 5vw, 2.6rem);
    --type-display-lg: clamp(2.05rem, 4.5vw, 2.35rem);
    --type-display-md: clamp(1.9rem, 4vw, 2.05rem);
    --type-display-sm: clamp(1.7rem, 3.5vw, 1.8rem);
  }
  .home-hero-inner,
  .about-hero-inner { padding-block: 58px 38px; }
}

@media (max-width: 600px) {
  :root {
    --type-hero-home: clamp(2.35rem, 10.2vw, 2.8rem);
    --type-hero-page: clamp(2.3rem, 10.8vw, 2.75rem);
    --type-hero-about: clamp(2.4rem, 10.5vw, 2.9rem);
    --type-hero-project: clamp(2.25rem, 10.1vw, 2.9rem);
    --type-display-xl: clamp(2.1rem, 8.5vw, 2.5rem);
    --type-display-lg: clamp(2rem, 8vw, 2.2rem);
    --type-display-md: clamp(1.8rem, 6.8vw, 2rem);
    --type-display-sm: clamp(1.6rem, 5.8vw, 1.85rem);
    --type-card-title: clamp(1.35rem, 5.5vw, 1.55rem);
  }
  .page-hero { padding-block: 58px 54px; }
  .home-hero-inner,
  .about-hero-inner { padding-block: 52px 34px; }
  .client-voice blockquote p { font-size: clamp(1.18rem, 5.1vw, 1.42rem); }
  .footer-cta a { font-size: clamp(1.85rem, 8vw, 2.15rem); }
}
